import * as React from 'react' import Svg, { Path } from 'react-native-svg' import colors from 'src/styles/colors' interface Props { size?: number color?: string } function Stack({ color = colors.contentPrimary, size = 24 }: Props) { return ( ) } export default Stack