Files
feishin/src/renderer/features/shared/components/more-button.tsx
T
Jeff c1330d92b2 Migrate to Mantine v8 and Design Changes (#961)
* mantine v8 migration

* various design changes and improvements
2025-06-24 00:04:36 -07:00

18 lines
458 B
TypeScript

import { ActionIcon, ActionIconProps } from '/@/shared/components/action-icon/action-icon';
interface MoreButtonProps extends ActionIconProps {}
export const MoreButton = ({ ...props }: MoreButtonProps) => {
return (
<ActionIcon
icon="ellipsisHorizontal"
iconProps={{
size: 'lg',
...props.iconProps,
}}
variant="subtle"
{...props}
/>
);
};