mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 20:40:15 +02:00
c1330d92b2
* mantine v8 migration * various design changes and improvements
11 lines
335 B
TypeScript
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>;
|
|
};
|