keanu-weblite/src/components/VoiceRecorderLock.vue
N-Pex b1d47748c8 Use SASS module system
Get rid of all the SASS warnings/errors when building.
2025-05-19 10:25:46 +02:00

28 lines
No EOL
451 B
Vue

<template>
<div>
<div
:class="{ 'voice-recorder-lock': true, 'locked': isLocked }"
ref="vr_lock"
>
<div :class="{ 'thumb': true, 'locked': isLocked }" />
</div>
</div>
</template>
<script>
export default {
name: "VoiceRecorderLock",
props: {
isLocked: {
type: Boolean,
default: function () {
return false;
},
},
},
};
</script>
<style lang="scss">
@use "@/assets/css/chat.scss" as *;
</style>