34 lines
1017 B
TypeScript
34 lines
1017 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import ViewListIcon from '@mui/icons-material/ViewList';
|
||
|
|
import ViewModuleIcon from '@mui/icons-material/ViewModule';
|
||
|
|
import ViewQuiltIcon from '@mui/icons-material/ViewQuilt';
|
||
|
|
import ToggleButton from '@mui/material/ToggleButton';
|
||
|
|
import ToggleButtonGroup from '@mui/material/ToggleButtonGroup';
|
||
|
|
|
||
|
|
export default function VerticalToggleButtons() {
|
||
|
|
const [view, setView] = React.useState('list');
|
||
|
|
|
||
|
|
const handleChange = (event: React.MouseEvent<HTMLElement>, nextView: string) => {
|
||
|
|
setView(nextView);
|
||
|
|
};
|
||
|
|
|
||
|
|
return (
|
||
|
|
<ToggleButtonGroup
|
||
|
|
orientation="vertical"
|
||
|
|
value={view}
|
||
|
|
exclusive
|
||
|
|
onChange={handleChange}
|
||
|
|
>
|
||
|
|
<ToggleButton value="list" aria-label="list">
|
||
|
|
<ViewListIcon />
|
||
|
|
</ToggleButton>
|
||
|
|
<ToggleButton value="module" aria-label="module">
|
||
|
|
<ViewModuleIcon />
|
||
|
|
</ToggleButton>
|
||
|
|
<ToggleButton value="quilt" aria-label="quilt">
|
||
|
|
<ViewQuiltIcon />
|
||
|
|
</ToggleButton>
|
||
|
|
</ToggleButtonGroup>
|
||
|
|
);
|
||
|
|
}
|