mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-15 05:15:41 +00:00
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>
|
||
|
)
|
||
|
}
|