UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

22 lines (21 loc) 1.24 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var ThSmall = 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: 5, cy: 19, r: 2.5, key: "k0" }), React.createElement("circle", { cx: 5, cy: 12, r: 2.5, key: "k1" }), React.createElement("circle", { cx: 5, cy: 5, r: 2.5, key: "k2" }), React.createElement("circle", { cx: 12, cy: 19, r: 2.5, key: "k3" }), React.createElement("circle", { cx: 12, cy: 12, r: 2.5, key: "k4" }), React.createElement("circle", { cx: 12, cy: 5, r: 2.5, key: "k5" }), React.createElement("circle", { cx: 19, cy: 19, r: 2.5, key: "k6" }), React.createElement("circle", { cx: 19, cy: 12, r: 2.5, key: "k7" }), React.createElement("circle", { cx: 19, cy: 5, r: 2.5, key: "k8" }))); }); ThSmall.displayName = 'ThSmall'; export var ThSmallDimensions = { height: 24, width: 24 };