@cerberus-design/react
Version:
The Cerberus Design React component library.
18 lines (15 loc) • 403 B
JavaScript
import { jsx } from 'react/jsx-runtime';
import { IconButtonRoot } from './primitives.js';
function IconButton(props) {
const { ariaLabel, clipboard, ...rootProps } = props;
return /* @__PURE__ */ jsx(
IconButtonRoot,
{
...rootProps,
...!clipboard && { "aria-label": ariaLabel },
"data-scope": "icon-button",
"data-part": "root"
}
);
}
export { IconButton };