mirror of
https://github.com/cupcakearmy/svelte-rest-demo.git
synced 2026-04-02 18:05:32 +00:00
21 lines
308 B
Svelte
21 lines
308 B
Svelte
<script>
|
|
export let value
|
|
export let full = false
|
|
</script>
|
|
|
|
<style>
|
|
input {
|
|
outline: none;
|
|
border: 3px solid hsl(0, 0%, 0%);
|
|
border-radius: 1em;
|
|
font-size: inherit;
|
|
padding: 0.25em 1em;
|
|
}
|
|
|
|
.full {
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
|
|
<input bind:value class:full {...$$restProps} />
|