1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

Removes unused components

This commit is contained in:
Amir Raminfar
2023-03-02 15:57:12 -08:00
parent 539ace566c
commit e02b08c21d
2 changed files with 0 additions and 36 deletions

View File

@@ -1,16 +0,0 @@
<template>
<nav text-xl mt-6 inline-flex gap-2>
<button icon-btn @click="toggleDark()">
<div dark:i-carbon-moon i-carbon-sun />
</button>
<a
icon-btn
i-carbon-logo-github
rel="noreferrer"
href="https://github.com/antfu/vitesse-lite"
target="_blank"
title="GitHub"
/>
</nav>
</template>

View File

@@ -1,20 +0,0 @@
<script setup lang="ts">
const { modelValue } = defineModel<{
modelValue: string
}>()
</script>
<template>
<input
id="input"
v-model="modelValue"
type="text"
v-bind="$attrs"
p="x-4 y-2"
w="250px"
text="center"
bg="transparent"
border="~ rounded gray-200 dark:gray-700"
outline="none active:none"
>
</template>