UNPKG

styled-icons

Version:

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

22 lines (21 loc) 1.28 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Codesandbox = React.forwardRef(function (props, ref) { var attrs = { "fill": "none", "xmlns": "http://www.w3.org/2000/svg", "stroke": "currentColor", "strokeLinecap": "round", "strokeLinejoin": "round", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M21 16V8a2 2 0 00-1-1.73l-7-4a2 2 0 00-2 0l-7 4A2 2 0 003 8v8a2 2 0 001 1.73l7 4a2 2 0 002 0l7-4A2 2 0 0021 16z", key: "k0" }), React.createElement("polyline", { points: "7.5 4.21 12 6.81 16.5 4.21", key: "k1" }), React.createElement("polyline", { points: "7.5 19.79 7.5 14.6 3 12", key: "k2" }), React.createElement("polyline", { points: "21 12 16.5 14.6 16.5 19.79", key: "k3" }), React.createElement("polyline", { points: "3.27 6.96 12 12.01 20.73 6.96", key: "k4" }), React.createElement("line", { x1: 12, x2: 12, y1: 22.08, y2: 12, key: "k5" }))); }); Codesandbox.displayName = 'Codesandbox'; export var CodesandboxDimensions = { height: 24, width: 24 };