UNPKG

@crossed/ui

Version:

A universal & performant styling library for React Native, Next.js & React

11 lines (10 loc) 367 B
import { jsx } from "react/jsx-runtime"; import { X } from "@crossed/unicons"; import { IconButton } from "./IconButton"; const CloseButton = (props) => { return /* @__PURE__ */ jsx(IconButton, { role: "button", "aria-label": "Close", ...props, children: /* @__PURE__ */ jsx(X, { size: 16 }) }); }; export { CloseButton }; //# sourceMappingURL=CloseButton.js.map