2023-01-20 14:18:05 +00:00
|
|
|
import { Circle, Path, Svg } from 'react-native-svg'
|
|
|
|
import { useCurrentColor } from 'tamagui'
|
|
|
|
|
|
|
|
import type { SvgProps } from 'react-native-svg'
|
|
|
|
|
2023-01-23 13:03:08 +00:00
|
|
|
const SvgBulletListIcon = (props: SvgProps) => {
|
2023-01-20 14:18:05 +00:00
|
|
|
const { color: colorToken = 'currentColor', ...rest } = props
|
|
|
|
const color = useCurrentColor(colorToken)
|
|
|
|
return (
|
|
|
|
<Svg
|
|
|
|
width={20}
|
|
|
|
height={20}
|
|
|
|
fill="none"
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
2023-02-10 16:25:13 +00:00
|
|
|
{...rest}
|
2023-01-20 14:18:05 +00:00
|
|
|
>
|
|
|
|
<Path
|
|
|
|
d="M15 15H8.5M15 5H8.5"
|
|
|
|
stroke={color}
|
|
|
|
strokeWidth={1.5}
|
|
|
|
strokeLinecap="square"
|
|
|
|
strokeLinejoin="round"
|
|
|
|
/>
|
|
|
|
<Circle
|
|
|
|
cx={5.25}
|
|
|
|
cy={10}
|
|
|
|
r={1.25}
|
|
|
|
transform="rotate(-90 5.25 10)"
|
|
|
|
fill={color}
|
|
|
|
/>
|
|
|
|
<Circle
|
|
|
|
cx={5.25}
|
|
|
|
cy={14.75}
|
|
|
|
r={1.25}
|
|
|
|
transform="rotate(-90 5.25 14.75)"
|
|
|
|
fill={color}
|
|
|
|
/>
|
|
|
|
<Circle
|
|
|
|
cx={5.25}
|
|
|
|
cy={5.25}
|
|
|
|
r={1.25}
|
|
|
|
transform="rotate(-90 5.25 5.25)"
|
|
|
|
fill={color}
|
|
|
|
/>
|
|
|
|
<Path
|
|
|
|
d="M15 10H8.5"
|
|
|
|
stroke={color}
|
|
|
|
strokeWidth={1.5}
|
|
|
|
strokeLinecap="square"
|
|
|
|
strokeLinejoin="round"
|
|
|
|
/>
|
|
|
|
</Svg>
|
|
|
|
)
|
|
|
|
}
|
2023-01-23 13:03:08 +00:00
|
|
|
export default SvgBulletListIcon
|