You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
424 B

<script lang="ts">
import {
Input,
InputGroup,
InputGroupAddon,
InputGroupText,
} from "sveltestrap";
export let label = "label";
</script>
<InputGroup class="flex flex-row">
<InputGroupAddon addonType="prepend">
<InputGroupText>{label}</InputGroupText>
</InputGroupAddon>
<Input bsSize="sm" type="date" />
<Input bsSize="sm" type="time" />
</InputGroup>