import { ActionIcon, type ActionIconProps } from '@lobehub/ui'; import { StoryBook, useControls, useCreateStore } from '@lobehub/ui/storybook'; import * as LucideIcon from 'lucide-react'; export default () => { const store = useCreateStore(); const control: ActionIconProps | any = useControls( { active: false, glass: false, icon: { options: LucideIcon, value: LucideIcon.Settings, }, size: { options: ['large', 'normal', 'small'], value: 'large', }, }, { store }, ); return ( ); };