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.16 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Certification = 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: "M2.047 14.667a.992.992 0 00.466.607l1.909 1.104v2.199a1 1 0 001 1h2.199l1.104 1.91a1.002 1.002 0 001.366.366L12 20.75l1.91 1.104a1.002 1.002 0 001.366-.366l1.103-1.909h2.199a1 1 0 001-1V16.38l1.909-1.104a.999.999 0 00.366-1.366L20.75 12l1.104-1.909a1 1 0 00-.366-1.366l-1.909-1.104V5.422a1 1 0 00-1-1H16.38l-1.103-1.909a1.004 1.004 0 00-.607-.466.994.994 0 00-.759.1L12 3.25l-1.909-1.104a.998.998 0 00-1.366.365l-1.104 1.91H5.422a1 1 0 00-1 1V7.62L2.513 8.725a1.001 1.001 0 00-.365 1.366L3.251 12l-1.104 1.909a1.003 1.003 0 00-.1.758z", key: "k0" }))); }); Certification.displayName = 'Certification'; export var CertificationDimensions = { height: 24, width: 24 };