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.07 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Stak = 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 32 32" }, props, { ref: ref }), React.createElement("path", { d: "M16 32C7.163 32 0 24.837 0 16S7.163 0 16 0s16 7.163 16 16-7.163 16-16 16zm.566-27c.181 1.472.26 2.966.385 4.438.072.445.11.896.113 1.347l3.827 3.815c-1.676 2.4-3.397 4.789-5.072 7.2.17 1.925.317 3.85.51 5.774l11.57-16.393h-5.14c-2.06-2.06-4.11-4.132-6.182-6.181h-.011zM4.011 21.46H4v.046c1.72-.034 3.442 0 5.162-.023l6.147 6.159h.023c-.192-1.936-.34-3.884-.51-5.808-1.279-1.257-2.535-2.536-3.792-3.792 1.687-2.4 3.385-4.778 5.072-7.19l-.487-5.795c-3.872 5.468-7.72 10.947-11.604 16.403z", key: "k0" }))); }); Stak.displayName = 'Stak'; export var StakDimensions = { height: 32, width: 32 };