expo-popcore-app/components/icon/plus.tsx

15 lines
343 B
TypeScript

import Svg, { Path } from 'react-native-svg';
export const PlusIcon = () => (
<Svg width="16" height="16" viewBox="0 0 16 16" fill="none">
<Path
d="M8 3V13M3 8H13"
stroke="#FFFFFF"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);