19 lines
759 B
TypeScript
19 lines
759 B
TypeScript
import * as React from 'react';
|
|
import Svg, { Path } from 'react-native-svg';
|
|
|
|
interface Props {
|
|
width?: number;
|
|
height?: number;
|
|
fill?: string;
|
|
}
|
|
|
|
const Drug = ({ fill = '#FF6363', height = 24, width = 24 }: Props) => (
|
|
<Svg width={width} height={height} fill="none" viewBox="0 0 18 18">
|
|
<Path
|
|
fill={fill}
|
|
d="m17.065 5.65-1.179 1.178-1.768-1.768-1.768 1.768 2.947 2.946-1.179 1.179-.589-.59-5.303 5.304H3.512l-1.768 1.767-1.179-1.178 1.768-1.768V9.774l5.303-5.303-.589-.59 1.179-1.178 2.946 2.946 1.768-1.767-1.768-1.768L12.35.935l4.715 4.714ZM12.35 9.184 8.816 5.649 7.637 6.828l1.767 1.768-1.178 1.178-1.768-1.768-1.179 1.179 1.768 1.768L5.87 12.13 4.1 10.363 4 10.464V14h3.535l4.816-4.815Z"
|
|
/>
|
|
</Svg>
|
|
);
|
|
export default Drug;
|