UNPKG

styled-icons

Version:

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

14 lines (13 loc) 817 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var TShirt = 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.316 4.055C19.556 3.478 15 1.985 15 2a3 3 0 11-6 0c0-.015-4.556 1.478-6.317 2.055A.992.992 0 002 5.003v3.716a1 1 0 001.242.97L6 9v12a1 1 0 001 1h10a1 1 0 001-1V9l2.758.689A1 1 0 0022 8.719V5.003a.992.992 0 00-.684-.948z", key: "k0" }))); }); TShirt.displayName = 'TShirt'; export var TShirtDimensions = { height: 24, width: 24 };