2
0
Files
bot/ee/apps/landing-page/assets/logos/WebflowLogo.tsx

21 lines
1.0 KiB
TypeScript
Raw Normal View History

2022-03-17 14:37:00 +01:00
import { Icon, IconProps } from '@chakra-ui/react'
import React from 'react'
2022-03-17 14:37:00 +01:00
export const WebflowLogo = (props: IconProps) => (
<Icon
viewBox="0 0 224 224"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M112 224C173.856 224 224 173.856 224 112C224 50.1441 173.856 0 112 0C50.1441 0 0 50.1441 0 112C0 173.856 50.1441 224 112 224Z"
fill="#4353FF"
/>
<path
d="M144.9 98.7016L134.75 130.692C134.75 128.242 127.75 75.1816 127.75 75.1816C111.65 75.1816 103.11 86.5916 98.6301 98.7016L86.2401 130.762C86.2401 128.452 84.4901 98.9816 84.4901 98.9816C83.8925 92.602 80.9759 86.663 76.2929 82.2897C71.6099 77.9163 65.4856 75.4122 59.0801 75.2516L72.2401 155.612C89.0401 155.612 98.1401 144.202 102.83 132.092L113.33 104.792C113.33 105.912 120.33 155.612 120.33 155.612C127.2 155.603 133.888 153.407 139.426 149.341C144.964 145.276 149.063 139.553 151.13 133.002L174.93 75.1816C158.13 75.1816 149.31 86.5916 144.83 98.7016H144.9Z"
fill="white"
/>
2022-03-17 14:37:00 +01:00
</Icon>
)