styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
22 lines (21 loc) • 1.12 kB
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var List = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "none",
"xmlns": "http://www.w3.org/2000/svg",
"stroke": "currentColor",
"strokeLinecap": "round",
"strokeLinejoin": "round",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("line", { x1: 8, x2: 21, y1: 6, y2: 6, key: "k0" }),
React.createElement("line", { x1: 8, x2: 21, y1: 12, y2: 12, key: "k1" }),
React.createElement("line", { x1: 8, x2: 21, y1: 18, y2: 18, key: "k2" }),
React.createElement("line", { x1: 3, x2: 3.01, y1: 6, y2: 6, key: "k3" }),
React.createElement("line", { x1: 3, x2: 3.01, y1: 12, y2: 12, key: "k4" }),
React.createElement("line", { x1: 3, x2: 3.01, y1: 18, y2: 18, key: "k5" })));
});
List.displayName = 'List';
export var ListDimensions = { height: 24, width: 24 };