16 行
468 B
TypeScript
16 行
468 B
TypeScript
|
|
import React from 'react'
|
||
|
|
import Svg, { Path } from 'react-native-svg'
|
||
|
|
|
||
|
|
type Props = { size?: number; color?: string }
|
||
|
|
|
||
|
|
export default function IconBack({ size = 22, color = '#222222' }: Props) {
|
||
|
|
return (
|
||
|
|
<Svg viewBox="0 0 1024 1024" width={size} height={size}>
|
||
|
|
<Path
|
||
|
|
d="M778.624 49.056L743.104 13.456 280.944 476.4v-0.016L245.376 512v0.016l35.568 35.632 462.16 462.896 35.52-35.616-462.128-462.912z"
|
||
|
|
fill={color}
|
||
|
|
/>
|
||
|
|
</Svg>
|
||
|
|
)
|
||
|
|
}
|