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.

28 lines 1.02 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Pharmacy(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: "M20.253 3.759h-.003a6.027 6.027 0 0 1 0 8.502l-7.985 7.985A5.964 5.964 0 0 1 8.018 22a6 6 0 0 1-4.242-10.262l7.976-7.98a6.016 6.016 0 0 1 8.5 0zm-1.179 7.323a4.3 4.3 0 0 0 1.265-3.068 4.334 4.334 0 0 0-7.405-3.077L9.828 8.043a.417.417 0 0 0 0 .59l5.552 5.551a.417.417 0 0 0 .59 0l3.104-3.102zM15.873 4.63A3.409 3.409 0 0 1 18.3 5.636a.625.625 0 0 1-.885.884 2.232 2.232 0 0 0-3.083 0 .625.625 0 0 1-.884-.884 3.41 3.41 0 0 1 2.425-1.004z" })); }