22 lines
919 B
TypeScript
22 lines
919 B
TypeScript
import type { IconProps } from './types';
|
|
|
|
export function SwiftIcon({ className }: IconProps) {
|
|
return (
|
|
<svg
|
|
width="512"
|
|
height="512"
|
|
viewBox="0 0 512 512"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className={className}
|
|
>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M315.443 25.6001C540.493 179.828 467.712 349.888 467.712 349.888C467.712 349.888 531.712 422.712 505.83 486.4C505.83 486.4 479.437 441.8 435.174 441.8C392.499 441.8 367.437 486.4 281.574 486.4C90.3934 486.4 0 325.438 0 325.438C172.237 439.632 289.843 358.763 289.843 358.763C212.249 313.364 47.1805 96.2501 47.1805 96.2501C190.924 219.576 253.056 252.1 253.056 252.1C215.987 221.198 111.974 70.2001 111.974 70.2001C195.174 155.117 360.499 273.588 360.499 273.588C407.45 142.472 315.443 25.6001 315.443 25.6001Z"
|
|
fill="currentColor"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|