styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 765 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var IceCream = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "-.125em", iconViewBox: "0 0 448 512" }, props, { ref: ref }),
React.createElement("path", { fill: "currentColor", d: "M368 160h-.94a144 144 0 10-286.12 0H80a48 48 0 000 96h288a48 48 0 000-96zM195.38 493.69a31.52 31.52 0 0057.24 0L352 288H96z", key: "k0" })));
});
IceCream.displayName = 'IceCream';
export var IceCreamDimensions = { height: undefined, width: undefined };