2024-02-03 00:34:54 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { Card } from '../src/primitive-components/card/card';
|
2024-02-23 23:15:35 +03:00
|
|
|
import { IconButton } from '../src/primitive-components/components';
|
2024-02-07 23:01:50 +03:00
|
|
|
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 (
|
2024-02-03 00:34:54 +03:00
|
|
|
<main>
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
alignItems: 'center',
|
|
|
|
gap: '8px',
|
|
|
|
padding: '8px',
|
|
|
|
}}
|
|
|
|
>
|
2024-02-17 20:11:14 +03:00
|
|
|
<div
|
|
|
|
style={{ display: 'flex', gap: '8px', maxWidth: '1024px' }}
|
|
|
|
>
|
2024-02-03 22:52:25 +03:00
|
|
|
<Card variant={'outlined'}>
|
2024-02-04 01:58:56 +03:00
|
|
|
<CardFooter>
|
2024-02-23 22:55:21 +03:00
|
|
|
<SegmentedButtons selectable={true}>
|
2025-04-03 10:33:23 +03:00
|
|
|
<SegmentButton
|
|
|
|
fillIcon={1}
|
|
|
|
icon={'change_history'}
|
|
|
|
>
|
2024-02-23 22:55:21 +03:00
|
|
|
Label 1
|
2025-04-03 10:33:23 +03:00
|
|
|
</SegmentButton>
|
|
|
|
<SegmentButton
|
|
|
|
fillIcon={1}
|
|
|
|
icon={'change_history'}
|
|
|
|
iconPlace={'right'}
|
2024-02-23 22:55:21 +03:00
|
|
|
selectable={false}
|
2025-04-03 10:33:23 +03:00
|
|
|
>
|
2024-02-23 22:55:21 +03:00
|
|
|
Not selectable
|
2025-04-03 10:33:23 +03:00
|
|
|
</SegmentButton>
|
2024-02-23 22:55:21 +03:00
|
|
|
<SegmentButton
|
|
|
|
fillIcon={1}
|
|
|
|
icon={'change_history'}
|
|
|
|
iconPlace={'right'}
|
|
|
|
iconSize={48}
|
|
|
|
svgSize={48}
|
|
|
|
>
|
|
|
|
Label 3
|
|
|
|
</SegmentButton>
|
|
|
|
<SegmentButton disabled>Label 4</SegmentButton>
|
2025-04-03 10:33:23 +03:00
|
|
|
</SegmentedButtons>
|
2024-02-23 23:15:35 +03:00
|
|
|
<IconButton icon={'settings'} variant={'filled'} />
|
2024-02-03 22:52:25 +03:00
|
|
|
</CardFooter>
|
2024-02-03 00:34:54 +03:00
|
|
|
</Card>
|
2024-02-01 00:58:19 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-02-03 00:34:54 +03:00
|
|
|
</main>
|
2024-02-01 00:58:19 +03:00
|
|
|
);
|
2024-01-31 23:46:06 +03:00
|
|
|
}
|