UNPKG

braid-design-system

Version:
19 lines (18 loc) 493 B
import { jsx } from "react/jsx-runtime"; import { Box } from "../../Box/Box.mjs"; import { IconContainer } from "../IconContainer.mjs"; import { IconDownloadSvg } from "./IconDownloadSvg.mjs"; const IconDownload = (props) => /* @__PURE__ */ jsx( IconContainer, { ...props, verticalCorrection: { uppercase: "none", lowercase: "up" }, children: (svgProps) => /* @__PURE__ */ jsx(Box, { component: IconDownloadSvg, ...svgProps }) } ); export { IconDownload };