@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.
22 lines • 949 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function StarEmpty(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("path", {
d: "M12 16a1 1 0 0 1 .555.168l3.736 2.491-1.252-4.384a.997.997 0 0 1 .254-.982L18.586 10H15c-.379 0-.725-.214-.895-.553L12 5.236 9.895 9.447C9.725 9.786 9.379 10 9 10H5.414l3.293 3.293a.997.997 0 0 1 .254.982l-1.252 4.384 3.736-2.491A1 1 0 0 1 12 16m6 6c-.193 0-.386-.056-.555-.168L12 18.202l-5.445 3.63a1 1 0 0 1-1.516-1.107l1.838-6.434-4.584-4.584A.998.998 0 0 1 3 8h5.382l2.723-5.447c.339-.677 1.451-.677 1.79 0L15.618 8H21a1.001 1.001 0 0 1 .707 1.707l-4.584 4.584 1.838 6.434A.999.999 0 0 1 18 22"
}));
}