@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.
18 lines • 1.24 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Filters(props) {
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: props.size,
color: props.color,
customColor: props.customColor,
className: props.className,
dataTest: props.dataTest,
ariaHidden: props.ariaHidden,
reverseOnRtl: props.reverseOnRtl,
ariaLabel: props.ariaLabel
}, React.createElement("path", {
d: "M7.824 19H3.176C2.526 19 2 18.552 2 18s.527-1 1.177-1h4.646C8.475 17 9 17.448 9 18s-.526 1-1.177 1zM13 19v.324c0 .649-.448 1.176-1 1.176s-1-.527-1-1.177v-2.647c0-.65.448-1.176 1-1.176s1 .526 1 1.177V17h7.824c.65 0 1.176.448 1.176 1s-.526 1-1.177 1H13zm-.824-6c-.65 0-1.176-.448-1.176-1s.526-1 1.177-1h8.647c.649 0 1.176.448 1.176 1s-.527 1-1.177 1h-8.647zM7 13H3.176C2.526 13 2 12.552 2 12s.526-1 1.177-1H7v-.324c0-.65.448-1.176 1-1.176s1 .526 1 1.177v2.647c0 .649-.448 1.176-1 1.176s-1-.527-1-1.177V13zm4.824-6H3.175C2.527 7 2 6.552 2 6s.527-1 1.177-1h8.646C12.474 5 13 5.448 13 6s-.526 1-1.177 1zM17 7v.324c0 .649-.448 1.176-1 1.176s-1-.527-1-1.177V4.677c0-.65.448-1.176 1-1.176s1 .526 1 1.177V5h3.824C21.473 5 22 5.448 22 6s-.526 1-1.177 1H17z"
}));
}