Svelte Material UI - Notched Outline
Notched outlines are borders around input components.
See MDC Notched Outline for more information on API and Sass mixins.
See the Sass variable file for styling variables.
Installation
You won't generally need to install this package, unless you're manually creating text fields.
npm install --save-dev @smui/notched-outline
Basic Usage
<script>
import Textfield, {Input} from '@smui/textfield';
import FloatingLabel from '@smui/floating-label';
import NotchedOutline from '@smui/notched-outline';
let name = '';
</script>
<Textfield variant="outlined">
<Input bind:value={name} id="name-input" />
<NotchedOutline>
<FloatingLabel for="name-input">Name</FloatingLabel>
</NotchedOutline>
</Textfield>
Demo
in action: https://sveltematerialui.com/#/demo/textfield
demo code: https://github.com/hperrin/svelte-material-ui/blob/master/site/demos/Textfield.svelte
Exports
todo...