material-you-react/app/page.tsx

59 lines
2.5 KiB
TypeScript
Raw Normal View History

import React from 'react';
import { Card } from '../src/primitive-components/card/card';
import { IconButton } from '../src/primitive-components/components';
import { CardFooter } from '../src/primitive-components/card/card-footer';
2024-02-12 19:11:33 +03:00
import { SegmentButton } from '../src/primitive-components/button-components/segmented-buttons/segment-button';
import { SegmentedButtons } from '../src/primitive-components/button-components/segmented-buttons/segmented-buttons';
2024-02-01 00:58:19 +03:00
2024-01-31 23:46:06 +03:00
export default function Page() {
2024-02-01 00:58:19 +03:00
return (
<main>
<div
style={{
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
gap: '8px',
padding: '8px',
}}
>
<div
style={{ display: 'flex', gap: '8px', maxWidth: '1024px' }}
>
<Card variant={'outlined'}>
<CardFooter>
<SegmentedButtons selectable={true}>
<SegmentButton
fillIcon={1}
icon={'change_history'}
>
Label 1
</SegmentButton>
<SegmentButton
fillIcon={1}
icon={'change_history'}
iconPlace={'right'}
selectable={false}
>
Not selectable
</SegmentButton>
<SegmentButton
fillIcon={1}
icon={'change_history'}
iconPlace={'right'}
iconSize={48}
svgSize={48}
>
Label 3
</SegmentButton>
<SegmentButton disabled>Label 4</SegmentButton>
</SegmentedButtons>
<IconButton icon={'settings'} variant={'filled'} />
</CardFooter>
</Card>
2024-02-01 00:58:19 +03:00
</div>
</div>
</main>
2024-02-01 00:58:19 +03:00
);
2024-01-31 23:46:06 +03:00
}