snowballtools-base/packages/frontend/src/components/shared/CustomIcon/AppleIcon.tsx
2024-04-23 21:21:58 -05:00

30 lines
1.5 KiB
XML

import { CustomIcon, CustomIconProps } from './CustomIcon';
export const AppleIcon: React.FC<CustomIconProps> = (props) => {
return (
<CustomIcon
width="21"
height="21"
viewBox="0 0 21 21"
fill="none"
{...props}
>
<g clipPath="url(#clip0_2415_13467)">
<path
fill="currentColor"
d="M18.234 16.046c-.29.67-.633 1.286-1.03 1.853-.543.772-.986 1.307-1.328 1.604-.53.487-1.098.737-1.706.751-.437 0-.963-.124-1.576-.376-.615-.25-1.18-.375-1.696-.375-.542 0-1.123.124-1.745.375-.623.252-1.124.383-1.508.396-.583.025-1.164-.232-1.744-.771-.37-.323-.834-.877-1.389-1.661-.595-.838-1.084-1.809-1.468-2.916-.41-1.197-.616-2.355-.616-3.476 0-1.284.277-2.392.833-3.32a4.89 4.89 0 011.746-1.767 4.696 4.696 0 012.36-.665c.463 0 1.07.143 1.825.424.753.283 1.236.426 1.448.426.159 0 .695-.167 1.606-.501.86-.31 1.587-.438 2.182-.388 1.612.13 2.824.766 3.63 1.911-1.443.874-2.156 2.098-2.142 3.668.013 1.223.457 2.24 1.329 3.049.395.375.836.665 1.327.87-.106.31-.219.605-.338.889zM14.535 1.493c0 .958-.35 1.853-1.048 2.682-.842.985-1.861 1.554-2.966 1.464a3 3 0 01-.022-.363c0-.92.4-1.905 1.112-2.71a4.282 4.282 0 011.354-1.018c.547-.266 1.064-.413 1.55-.439.015.129.02.257.02.384z"
></path>
</g>
<defs>
<clipPath id="clip0_2415_13467">
<path
fill="currentColor"
d="M0 0H20V20H0z"
transform="translate(.5 .691)"
></path>
</clipPath>
</defs>
</CustomIcon>
);
};