Files
feishin/src/shared/components/copy-button/copy-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

11 lines
335 B
TypeScript

import {
CopyButton as MantineCopyButton,
CopyButtonProps as MantineCopyButtonProps,
} from '@mantine/core';
export interface CopyButtonProps extends MantineCopyButtonProps {}
export const CopyButton = ({ children, ...props }: CopyButtonProps) => {
return <MantineCopyButton {...props}>{children}</MantineCopyButton>;
};