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) => ( ); export default Drug;