@engrate/components 0.1.17 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ui/Text/Text.d.ts +1 -1
- package/dist/index.cjs.js +26 -26
- package/dist/index.es.js +9376 -9376
- package/dist/skills/engrate-component-user.md +2 -0
- package/dist/styles.css +1 -1
- package/package.json +5 -5
|
@@ -199,7 +199,9 @@ import { Heading, Text, Eyebrow, Stack } from '@engrate/components'
|
|
|
199
199
|
<Heading level="h1">Page Title</Heading>
|
|
200
200
|
<Text variant="lead">Lead paragraph with larger text.</Text>
|
|
201
201
|
<Text variant="semi-lead">Semi lead paragraph.</Text>
|
|
202
|
+
<Text variant="body-lg">Large body text for emphasis.</Text>
|
|
202
203
|
<Text variant="body">Regular body text for content.</Text>
|
|
204
|
+
<Text variant="body-sm">Smaller body text for secondary content.</Text>
|
|
203
205
|
<Text variant="descriptive">Descriptive smaller text.</Text>
|
|
204
206
|
</Stack>
|
|
205
207
|
```
|