Skip to content

Commit

Permalink
fix(sdds-cs-docs): edit docs components for correctly view
Browse files Browse the repository at this point in the history
  • Loading branch information
iljs committed Nov 12, 2024
1 parent f78df7c commit 6825716
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion website/sdds-cs-docs/docs/components/Cell.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function App() {
return (
<>
<Cell
contentLeft={ <Avatar size="xs" url="https://avatars.githubusercontent.com/u/1813468?v=4" /> }
contentLeft={ <Avatar size="m" url="https://avatars.githubusercontent.com/u/1813468?v=4" /> }
size="s"
contentRight={<IconChevronRight color="inheart" size="xs" />}
>
Expand Down
1 change: 0 additions & 1 deletion website/sdds-cs-docs/docs/components/Chip.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export function App() {
## Примеры

### Размер Chip
Размер Chip задается с помощью свойства `size`. Возможные значения свойства: `"l"`, `"m"`, `"s"` или `"xs"`:

```tsx live
import React from 'react';
Expand Down
2 changes: 1 addition & 1 deletion website/sdds-cs-docs/docs/components/Mask.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function App() {
placeholder="Введите дату"
mask="00/00/0000"
maskString="DD/MM/YYYY"
size="l"
size="s"
/>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion website/sdds-cs-docs/docs/components/Toast.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export function App() {
role: 'status',
hasClose: true,
fade: false,
size: 'm',
size: 's',
view: 'dark',
timeout: 3000,
onShow,
Expand Down

0 comments on commit 6825716

Please sign in to comment.