styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 737 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Opt = 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 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M14.5 13h-4a.499.499 0 01-.457-.297L6.175 4H1.5a.5.5 0 010-1h5c.198 0 .377.116.457.297L10.825 12H14.5a.5.5 0 010 1zM14.5 4h-5a.5.5 0 010-1h5a.5.5 0 010 1z", key: "k0" })));
});
Opt.displayName = 'Opt';
export var OptDimensions = { height: 16, width: 16 };