UNPKG

styled-icons

Version:

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

15 lines (14 loc) 793 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Trophy = 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", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }), React.createElement("path", { d: "M13 16.938V19h5v2H6v-2h5v-2.062A8.001 8.001 0 014 9V3h16v6a8.001 8.001 0 01-7 7.938zM1 5h2v4H1V5zm20 0h2v4h-2V5z", key: "k1" }))); }); Trophy.displayName = 'Trophy'; export var TrophyDimensions = { height: 24, width: 24 };