mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-14 19:55:40 +00:00
r-freeman
829c6ba4be
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m42s
13 lines
481 B
XML
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>
|
|
)
|
|
}
|
|
|