Skip to content

Commit bfde2e5

Browse files
authored
[Fix Document] Fix wrong props name (#809)
1 parent 5a9f2e2 commit bfde2e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

site/docs/overview/theming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ const Container = ({
212212
);
213213

214214
const App = () => (
215-
<Container brand="pink" body="Arial">
215+
<Container brandColor="pink" fontFamily="Arial">
216216
...
217217
</Container>
218218
);

site/docs/packages/dynamic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const Container = ({
9696
);
9797

9898
const App = () => (
99-
<Container brand="pink" body="Arial">
99+
<Container brandColor="pink" fontFamily="Arial">
100100
...
101101
</Container>
102102
);

0 commit comments

Comments
 (0)