XuqmGroup-RNSDK/packages/xwebview/src/icons/IconMenu.tsx

24 行
691 B
TypeScript

2026-05-07 19:39:41 +08:00
import React from 'react'
import Svg, { Path } from 'react-native-svg'
type Props = { size?: number; color?: string }
export default function IconMenu({ size = 22, color = '#5A5A68' }: Props) {
return (
<Svg viewBox="0 0 1024 1024" width={size} height={size}>
<Path
d="M512 298.6496a85.3504 85.3504 0 1 0 0-170.6496 85.3504 85.3504 0 0 0 0 170.6496z"
fill={color}
/>
<Path
d="M512 512m-85.3504 0a85.3504 85.3504 0 1 0 170.7008 0 85.3504 85.3504 0 1 0-170.7008 0Z"
fill={color}
/>
<Path
d="M512 896a85.3504 85.3504 0 1 0 0-170.7008 85.3504 85.3504 0 0 0 0 170.7008z"
fill={color}
/>
</Svg>
)
}