UNPKG

@elgato/icons

Version:

Icons used throughout the Elgato ecosystem.

10 lines (9 loc) 777 B
import { jsx as _jsx } from "react/jsx-runtime"; import { sizeMap } from "../../metadata/sizing.js"; const IconLogoDropboxColor = (props) => { const size = sizeMap[props?.size ?? "m"]; const label = props?.label ?? "Icon"; return (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", width: size, height: size, "aria-label": label, role: "img", ...props, children: _jsx("path", { fill: "#0061FF", d: "M12.013 6.382 7.006 9.765l5.007 3.382-5.007 3.383L2 13.129l5.006-3.382L2 6.382 7.006 3zM6.98 17.618l5.006-3.383 5.007 3.383L11.987 21zm5.032-4.489 5.006-3.382-5.006-3.365L16.993 3 22 6.382l-5.006 3.383L22 13.147l-5.006 3.383z" }) })); }; IconLogoDropboxColor.iconName = "logo-dropbox--color"; export default IconLogoDropboxColor;