Utilities

The following components are used throughout the library and you can use them for your app as well

CloseButton

Use CloseButton component to close a component.

{#if visible}
<div id="banner" tabindex="-1" class="flex z-50 gap-8 justify-between items-start py-3 px-4 w-full bg-gray-50 border border-b border-gray-200 sm:items-center dark:border-gray-700 lg:py-4 dark:bg-gray-800">
    <p class="text-sm font-light text-gray-500 dark:text-gray-400">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Dolorem, ipsa culpa ea laudantium earum quis? Neque unde aliquam enim, distinctio repellendus delectus? Illo numquam ex fugit dolor esse, cumque nesciunt?</p>
    <CloseButton
				on:click={() => (visible = false)}
				class="text-gray-400 hover:bg-gray-200 hover:text-gray-900 rounded-lg text-sm p-1.5 dark:hover:bg-gray-600 dark:hover:text-white"
			/>
  </div>
{/if}

Label

Use the Label component when you need to add a label.

<Label color='red' class="mt-4 flex items-center font-bold italic">
	<Checkbox class="mr-2"/> Your Label
</Label>

Props

The component has the following props, type, and default values. See types page for type information.

CloseButton

Name Type Default
color string 'default'
name string 'Close'
size 'xs' | 'sm' | 'md' 'md'

Label

Name Type Default
color 'gray' | 'green' | 'red' | 'disabled' 'gray'
defaultClass string 'text-sm font-medium block'

References