UNPKG

@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.14 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function StarEmpty(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: "M21.918 9.187a1.347 1.347 0 0 0-1.26-.879H15.21l-1.952-5.525a1.343 1.343 0 0 0-2.522.016L8.79 8.308H3.343a1.344 1.344 0 0 0-.863 2.374l4.613 3.822-1.935 5.808a1.343 1.343 0 0 0 2.067 1.511L12 18.324l4.775 3.5a1.343 1.343 0 0 0 2.068-1.507l-1.936-5.81 4.623-3.833a1.348 1.348 0 0 0 .388-1.487zm-6.664 4.31a.917.917 0 0 0-.285.996l1.42 4.26a.23.23 0 0 1-.352.258l-3.496-2.565a.917.917 0 0 0-1.084 0l-3.491 2.56a.23.23 0 0 1-.353-.256l1.42-4.261a.917.917 0 0 0-.285-.996l-3.556-2.945a.23.23 0 0 1 .146-.406h4.103a.917.917 0 0 0 .865-.613l1.478-4.188a.23.23 0 0 1 .433 0l1.477 4.188a.917.917 0 0 0 .865.613h4.103a.23.23 0 0 1 .145.406l-3.553 2.949z" })); }