@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 993 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Pharmacy.js.flow";
export default function Pharmacy(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<path d="M19.465 4.051c1.322 1.322 2.051 2.993 2.051 4.707s-.729 3.385-2.051 4.707l-6 6c-1.321 1.322-2.992 2.05-4.707 2.05-1.713 0-3.385-.727-4.707-2.05C2.729 18.143 2 16.471 2 14.758c0-1.714.729-3.385 2.051-4.707l6-6C11.372 2.728 13.044 2 14.758 2c1.713 0 3.385.729 4.707 2.051zm-1.414 8c.959-.958 1.465-2.097 1.465-3.293 0-1.196-.506-2.335-1.465-3.293C17.092 4.507 15.953 4 14.758 4c-1.197 0-2.335.507-3.293 1.465l-2 2 6.586 6.586 2-2zm-6.121-5a4.006 4.006 0 0 1 5.656 0l-1.414 1.415a2.003 2.003 0 0 0-2.828 0L11.93 7.051z" />
</OrbitIcon>
);
}