portfolio/components/icons/CloudIcon.tsx
r-freeman 829c6ba4be
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m42s
Test og images
2024-10-10 16:09:12 +01:00

13 lines
481 B
XML

import {Props} from '@/types'
export function CloudIcon(props: Props) {
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth="1.5" stroke="currentColor"
{...props}>
<path strokeLinecap="round" strokeLinejoin="round"
d="M2.25 15a4.5 4.5 0 0 0 4.5 4.5H18a3.75 3.75 0 0 0 1.332-7.257 3 3 0 0 0-3.758-3.848 5.25 5.25 0 0 0-10.233 2.33A4.502 4.502 0 0 0 2.25 15Z"/>
</svg>
)
}