Initial commit

This commit is contained in:
Samandar Turgunboyev
2025-08-26 16:26:59 +05:00
commit fd95422447
318 changed files with 38301 additions and 0 deletions

18
src/svg/Drug.tsx Normal file
View File

@@ -0,0 +1,18 @@
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;