styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 1.11 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Cool = 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: "M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2zm4.095 14.244a5.982 5.982 0 01-3.034 1.634 6.05 6.05 0 01-2.414 0 5.919 5.919 0 01-2.148-.903 6.078 6.078 0 01-1.621-1.622l1.658-1.117c.143.211.307.41.488.59a3.988 3.988 0 001.273.86c.243.102.495.181.749.232a4.108 4.108 0 001.616 0c.253-.052.505-.131.75-.233.234-.1.464-.224.679-.368.208-.142.407-.306.591-.489.183-.182.347-.381.489-.592l1.658 1.117c-.215.32-.462.62-.734.891zM19 10a2 2 0 01-2 2h-2a2 2 0 01-2-2h-2a2 2 0 01-2 2H7a2 2 0 01-2-2V8h14v2z", key: "k0" })));
});
Cool.displayName = 'Cool';
export var CoolDimensions = { height: 24, width: 24 };