UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 1.06 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Cube = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M21.406 6.086l-9-4a1.001 1.001 0 00-.813 0l-9 4c-.02.009-.034.024-.054.035-.028.014-.058.023-.084.04-.022.015-.039.034-.06.05a.87.87 0 00-.19.194c-.02.028-.041.053-.059.081a1.119 1.119 0 00-.076.165c-.009.027-.023.052-.031.079A1.013 1.013 0 002 7v10c0 .396.232.753.594.914l9 4c.13.058.268.086.406.086a.997.997 0 00.402-.096l.004.01 9-4A.999.999 0 0022 17V7a.999.999 0 00-.594-.914zM12 4.095L18.538 7 12 9.905l-1.308-.581L5.463 7 12 4.095zm1 15.366V11.65l7-3.111v7.812l-7 3.11z", key: "k0" }))); }); Cube.displayName = 'Cube'; export var CubeDimensions = { height: 24, width: 24 };