@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 • 1.33 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Filters(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: "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"
}));
}