Newer
Older
<script setup lang="ts">
interface Props {
color?: string;
size?: string | number;
}
defineProps<Props>();
</script>
<template>
<svg
:width="`${size ?? 40}px`"
:height="`${size ?? 40}px`"

Дмитрий Малюгин
committed
viewBox="0 0 1024 1024"
xmlns="http://www.w3.org/2000/svg"
>
<path
:fill="color ?? '#000000'"

Дмитрий Малюгин
committed
d="M832 384H576V128H192v768h640V384zm-26.496-64L640 154.496V320h165.504zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32zm320 512V448h64v128h128v64H544v128h-64V640H352v-64h128z"
/>
</svg>
</template>
<style scoped></style>