@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 • 905 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function StarFull(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.92 9.19a1.292 1.292 0 0 0-1.207-.84h-5.225a.43.43 0 0 1-.405-.287l-1.876-5.316a1.288 1.288 0 0 0-2.412 0l-.004.013L8.92 8.063a.43.43 0 0 1-.405.286H3.29a1.288 1.288 0 0 0-.827 2.276l4.45 3.691a.43.43 0 0 1 .133.466l-1.87 5.606a1.288 1.288 0 0 0 1.983 1.446l4.59-3.365a.43.43 0 0 1 .507 0l4.587 3.364a1.288 1.288 0 0 0 1.984-1.445l-1.87-5.61a.43.43 0 0 1 .134-.465l4.458-3.697a1.288 1.288 0 0 0 .372-1.425z"
}));
}