apps/mantine.dev/src/pages/core/copy-button.mdx
import { CopyButtonDemos } from '@docs/demos'; import { Layout } from '@/layout'; import { MDX_DATA } from '@/mdx';
export default Layout(MDX_DATA.CopyButton);
CopyButton is based on the use-clipboard hook.
Its children is a function that receives an object with the following properties:
copied – boolean value that indicates that a given value was recently copied to the clipboard, it resets after a given timeout (defaults to 500ms)copy – function that should be called to copy the given value to the clipboardDue to security reasons, the CopyButton component will not work in iframes and may not work with local files opened with the file:// protocol
(the component will work fine with local websites that are using the http:// protocol). You can learn more about navigator.clipboard here.
You can provide a custom copied reset timeout: