styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 788 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Divide = 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("circle", { cx: 12, cy: 6, r: 2.25, key: "k0" }),
React.createElement("circle", { cx: 12, cy: 18, r: 2.25, key: "k1" }),
React.createElement("path", { d: "M18 10H6a2 2 0 000 4h12a2 2 0 000-4z", key: "k2" })));
});
Divide.displayName = 'Divide';
export var DivideDimensions = { height: 24, width: 24 };