mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 13:00:13 +02:00
c1330d92b2
* mantine v8 migration * various design changes and improvements
18 lines
458 B
TypeScript
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}
|
|
/>
|
|
);
|
|
};
|