mirror of
https://github.com/cupcakearmy/svelte-rest-demo.git
synced 2025-09-05 17:10:40 +00:00
21 lines
311 B
Svelte
21 lines
311 B
Svelte
<script>
|
|
export let value
|
|
export let full = false
|
|
</script>
|
|
|
|
<style>
|
|
input {
|
|
outline: none;
|
|
border: 3px solid var(--clr-accent);
|
|
border-radius: 1em;
|
|
font-size: inherit;
|
|
padding: 0.25em 1em;
|
|
}
|
|
|
|
.full {
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
|
|
<input bind:value class:full {...$$restProps} />
|