mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-14 20:05:42 +00:00
Ryan Freeman
6c0100e9a3
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m39s
11 lines
422 B
TypeScript
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>
|
|
)
|
|
} |