2
0
Files
bot/ee/apps/landing-page/assets/icons/DoIcon.tsx

24 lines
513 B
TypeScript
Raw Normal View History

2024-06-17 14:12:14 +02:00
import { Icon, IconProps } from '@chakra-ui/icon'
2022-03-17 14:37:00 +01:00
import React from 'react'
export const DoIcon = (props: IconProps) => (
<Icon
viewBox="0 0 150 150"
boxSize="50px"
xmlns="http://www.w3.org/2000/svg"
fill="#4ADE80"
fillOpacity="0.8"
{...props}
>
<rect width="150" height="150" rx="75" />
<path
d="M100 58L65.625 92.375L50 76.75"
stroke="white"
strokeWidth="10"
fill="#40b76f"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Icon>
)