Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
function IconCopy(props: Omit<SVGProps<SVGSVGElement>, "viewBox">): Element;
props
Omit
SVGProps
SVGSVGElement
"viewBox"
Element
// Icon is correctly hidden from screen readers <button type="button" onClick={handleClick}> <IconCopy /> Copy address </button> // Icon with screen-reader accessible label only <button type="button" onClick={handleClick}> <IconCopy aria-label="Copy address" /> </button>
Was this page helpful?