mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-11 18:45:41 +00:00
24 lines
869 B
TypeScript
24 lines
869 B
TypeScript
|
import {Props} from '@/types'
|
||
|
|
||
|
export function BriefcaseIcon(props: Props) {
|
||
|
return (
|
||
|
<svg
|
||
|
viewBox="0 0 24 24"
|
||
|
fill="none"
|
||
|
strokeWidth="1.5"
|
||
|
strokeLinecap="round"
|
||
|
strokeLinejoin="round"
|
||
|
aria-hidden="true"
|
||
|
{...props}
|
||
|
>
|
||
|
<path
|
||
|
d="M2.75 9.75a3 3 0 0 1 3-3h12.5a3 3 0 0 1 3 3v8.5a3 3 0 0 1-3 3H5.75a3 3 0 0 1-3-3v-8.5Z"
|
||
|
className="fill-zinc-100 stroke-zinc-400 dark:fill-zinc-100/10 dark:stroke-zinc-500"
|
||
|
/>
|
||
|
<path
|
||
|
d="M3 14.25h6.249c.484 0 .952-.002 1.316.319l.777.682a.996.996 0 0 0 1.316 0l.777-.682c.364-.32.832-.319 1.316-.319H21M8.75 6.5V4.75a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2V6.5"
|
||
|
className="stroke-zinc-400 dark:stroke-zinc-500"
|
||
|
/>
|
||
|
</svg>
|
||
|
)
|
||
|
}
|