dappconnect-sdks/packages/icons/20/bullet-list-icon.tsx

56 lines
1.2 KiB
TypeScript
Raw Normal View History

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) => {
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"
{...rest}
>
<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