@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
28 lines • 838 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function List(props) {
const {
color,
size,
customColor,
className,
dataTest,
ariaHidden,
ariaLabel,
reverseOnRtl
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest,
ariaHidden: ariaHidden,
reverseOnRtl: reverseOnRtl,
ariaLabel: ariaLabel
}, React.createElement("path", {
d: "M4.75 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm3 .002a1 1 0 1 1 0-2h11.5a1 1 0 1 1 0 2H7.75zM4.75 13a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm14.5-1.998a1 1 0 1 1 0 2H7.75a1 1 0 1 1 0-2h11.5zM4.75 18a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm14.5-1.998a1 1 0 1 1 0 2H7.75a1 1 0 1 1 0-2h11.5z"
}));
}