merged lyxui into dashboard

This commit is contained in:
Emily
2024-11-18 14:33:09 +01:00
parent 4c811c160b
commit ec974c3599
17 changed files with 0 additions and 7950 deletions

View File

@@ -0,0 +1,24 @@
<script lang="ts" setup>
const props = defineProps<{ placeholder?: string, modelValue: string, type?: string }>();
const emits = defineEmits<{
(e: "update:modelValue", value: string): void
}>();
const handleChange = (event: Event) => {
const target = event.target as HTMLInputElement;
emits('update:modelValue', target.value);
};
//TODO: FUNCTIONALITY + PLACEHOLDER DARK
</script>
<template>
<input
class="bg-lyx-widget-light text-lyx-text-dark poppins rounded-md outline outline-[1px] outline-lyx-widget-lighter"
:type="props.type ?? 'text'" :placeholder="props.placeholder" :value="props.modelValue" @input="handleChange">
</template>