Skip to content

Commit 887286c

Browse files
committed
fix: README's
1 parent 704e182 commit 887286c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.storybook/disabled/@aetherspace-mongoose/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ git merge with/mongoose
2525
│ └── package.json # ➡️ pkg name & dependencies, like 'mongoose'
2626
```
2727

28-
## Usage -- Mongoose Model from Zod Schemas with `@green-stack/icons`
28+
## Usage -- Mongoose Model from Zod Schemas with `@aetherspace/mongoose`
2929

3030
```tsx
3131
import { z, aetherSchema } from 'aetherspace/schemas'

packages/@aetherspace-mongoose/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ git merge with/mongoose
2525
│ └── package.json # ➡️ pkg name & dependencies, like 'mongoose'
2626
```
2727

28-
## Usage -- Mongoose Model from Zod Schemas with `@green-stack/icons`
28+
## Usage -- Mongoose Model from Zod Schemas with `@aetherspace/mongoose`
2929

3030
```tsx
3131
import { z, aetherSchema } from 'aetherspace/schemas'

packages/@aetherspace/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import { View, Text } from 'aetherspace/primitives'
3838

3939
export const MyComponent = () => (
4040
<View tw="px-2 max-w-[100px] items-center rounded-md">
41-
<Text tw="lg:text-xl roboto-bold text-green">
41+
<Text tw="lg:text-xl font-primary-bold text-green">
4242
Hello World 👋
4343
</Text>
4444
</View>
@@ -57,11 +57,11 @@ import { Article, Section, H2, P } from 'aetherspace/html-elements'
5757
// -i- Mobile: Renders react-native View / Text / ... 👉 Gets turned into actual native UI
5858
export const MyBlogPost = (props: { paragraphs: string[] }) => (
5959
<Article tw="relative">
60-
<H2 tw="text-gray roboto-black">My post title</H2>
60+
<H2 tw="text-gray font-primary-black">My post title</H2>
6161
<Image tw="w-full" src="/img/article-header.png">
6262
<Section tw="px-4 mb-4">
6363
{/* render each paragraph as a <p> tag on web, or <Text> on mobile */}
64-
{props.paragraphs.map((paragraph) => <P tw="roboto-regular">{paragraph}</P>)}
64+
{props.paragraphs.map((paragraph) => <P tw="font-primary-regular">{paragraph}</P>)}
6565
</Section>
6666
</Article>
6767
)

packages/@aetherspace/styles/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { aetherify } from 'aetherspace/core'
1515
// ...
1616

1717
<Section tw="px-4 mb-4">
18-
<H1 tw="text-gray roboto-black">Some Title</H1>
18+
<H1 tw="text-gray-800 font-primary-black">Some Title</H1>
1919
<Image tw="w-full" src="/img/article-header.png" />
2020
<MyAetherifiedComponent tw="some-more-tw-classes">
2121
{/* ... */}

0 commit comments

Comments
 (0)