2
0

💄 (lp) Update wall of love

This commit is contained in:
Baptiste Arnaud
2022-12-02 10:53:53 +01:00
parent 41149b07c6
commit bdf7c0d5c0
16 changed files with 407 additions and 188 deletions

View File

@ -0,0 +1,15 @@
import Icon, { IconProps } from '@chakra-ui/icon'
import { featherIconsBaseProps } from './HamburgerIcon'
export const EmailIcon = (props: IconProps) => (
<Icon
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="currentcolor"
{...featherIconsBaseProps}
{...props}
>
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</Icon>
)