import * as React from 'react'; import {SvgXml} from 'react-native-svg'; type Props = { color: string; size?: number; }; const Icon = ({color, size = 6}: Props) => { const xml = ` `; return ; }; export default Icon;