10 lines
449 B
TypeScript
10 lines
449 B
TypeScript
|
export default function() {
|
||
|
return (
|
||
|
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-school" width="1em" height="1em" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||
|
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||
|
<path d="M22 9l-10 -4l-10 4l10 4l10 -4v6" />
|
||
|
<path d="M6 10.6v5.4a6 3 0 0 0 12 0v-5.4" />
|
||
|
</svg>
|
||
|
);
|
||
|
}
|