33 lines
833 B
TypeScript
33 lines
833 B
TypeScript
import { useRecoilState } from 'recoil';
|
|
|
|
import {
|
|
IconLayoutSidebarRightCollapse,
|
|
IconLayoutSidebarRightExpand,
|
|
} from '@/ui/display/icon';
|
|
import { LightIconButton } from '@/ui/input/button/components/LightIconButton';
|
|
|
|
import { isRightDrawerExpandedState } from '../states/isRightDrawerExpandedState';
|
|
|
|
export const RightDrawerTopBarExpandButton = () => {
|
|
const [isRightDrawerExpanded, setIsRightDrawerExpanded] = useRecoilState(
|
|
isRightDrawerExpandedState,
|
|
);
|
|
|
|
const handleButtonClick = () => {
|
|
setIsRightDrawerExpanded(!isRightDrawerExpanded);
|
|
};
|
|
|
|
return (
|
|
<LightIconButton
|
|
size="medium"
|
|
accent="tertiary"
|
|
Icon={
|
|
isRightDrawerExpanded
|
|
? IconLayoutSidebarRightCollapse
|
|
: IconLayoutSidebarRightExpand
|
|
}
|
|
onClick={handleButtonClick}
|
|
/>
|
|
);
|
|
};
|