import * as React from 'react' import Svg, { Path } from 'react-native-svg' import Colors, { ColorValue } from 'src/styles/colors' function Warning({ color = Colors.warningPrimary, size = 16, }: { color?: ColorValue size?: number }) { return ( ) } export default Warning