mirror of
https://github.com/Xevion/the-office.git
synced 2026-01-31 02:26:13 -06:00
25 lines
390 B
Vue
25 lines
390 B
Vue
<template>
|
|
<div class="image-skeleton" />
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
|
|
export default defineComponent({
|
|
name: "ImageSkeleton",
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@use "@/scss/_variables.scss" as *;
|
|
|
|
.image-skeleton {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: $gray-400;
|
|
display: block;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
</style>
|