portfolio/components/icons/AppIcon.tsx
Ryan Freeman 6c0100e9a3
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m39s
Added new page
2024-10-09 21:49:31 +01:00

11 lines
422 B
TypeScript

import {Props} from '@/types'
export function AppIcon(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="m21 7.5-9-5.25L3 7.5m18 0-9 5.25m9-5.25v9l-9 5.25M3 7.5l9 5.25M3 7.5v9l9 5.25m0-9v9"/>
</svg>
)
}