2
0
Files
bot/ee/apps/landing-page/assets/icons/CapterraIcon.tsx
2024-05-23 10:42:23 +02:00

19 lines
539 B
TypeScript

import Icon, { IconProps } from '@chakra-ui/icon'
export const CapterraIcon = (props: IconProps) => (
<Icon
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 149 152"
fill="none"
{...props}
>
<path d="M0.5 56.1H62.9H100.8V18.5L0.5 56.1Z" fill="#FF9D28" />
<path
d="M100.8 18.4998V151.2L148.2 0.799805L100.8 18.4998Z"
fill="#68C5ED"
/>
<path d="M100.8 56.1001H62.9L100.8 151.2V56.1001Z" fill="#044D80" />
<path d="M0.5 56.1001L72.6 80.5001L62.9 56.1001H0.5Z" fill="#E54747" />
</Icon>
)