warcraftcn warcraftcn/ui

Input

A Warcraft-themed input with a gold border-image frame. Supports all standard HTML input types and attributes.

Text

Password

Email

Number

Search

Disabled

With Label

Usage

<script>
  import { Input, Label } from 'warcraftcn-ui-svelte';
  let value = $state('');
</script>

<Input bind:value placeholder="Enter your hero name..." />

<Label for="name" required>Hero Name</Label>
<Input id="name" placeholder="..." />

Props

PropTypeDefault
typestring"text"
classstring""

All standard HTML input attributes (placeholder, disabled, id, etc.) are forwarded to the underlying <input> element.