2
0

📄 Add Commercial License for ee folder (#1532)

This commit is contained in:
Baptiste Arnaud
2024-05-23 10:42:23 +02:00
committed by GitHub
parent 5680829906
commit 0eacbebbbe
246 changed files with 1472 additions and 1588 deletions

View File

@ -0,0 +1,23 @@
import Icon, { IconProps } from '@chakra-ui/icon'
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>
)