styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 797 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Flag = 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: "M18.383 4.318a1 1 0 00-1.09.217 3.248 3.248 0 01-4.586 0 5.25 5.25 0 00-7.414 0A.997.997 0 005 5.242v13a1 1 0 102 0v-4.553a3.248 3.248 0 014.293.26 5.25 5.25 0 007.414 0 1 1 0 00.293-.707v-8a1 1 0 00-.617-.924z", key: "k0" })));
});
Flag.displayName = 'Flag';
export var FlagDimensions = { height: 24, width: 24 };