mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
feat: initial commit
This commit is contained in:
parent
bde7dd644f
commit
72dc38ea56
119 changed files with 14925 additions and 1 deletions
26
src/components/ToggleSmall/ToggleSmall.Skeleton.svelte
Normal file
26
src/components/ToggleSmall/ToggleSmall.Skeleton.svelte
Normal file
|
@ -0,0 +1,26 @@
|
|||
<script>
|
||||
let className = undefined;
|
||||
export { className as class };
|
||||
export let id = undefined;
|
||||
export let labelText = undefined;
|
||||
export let props = {};
|
||||
|
||||
import { cx } from '../../lib';
|
||||
|
||||
const _class = cx('--form-item', className);
|
||||
const ariaLabel = labelText ? undefined : $$props['aria-label'] || 'Toggle is loading';
|
||||
</script>
|
||||
|
||||
<div {...props} class={_class}>
|
||||
<input type="checkbox" class={cx('--toggle', '--toggle--small', '--skeleton')} {id} />
|
||||
<label class={cx('--toggle__label --skeleton')} for={id}>
|
||||
{#if labelText}
|
||||
<span class={cx('--toggle__label-text')}>{labelText}</span>
|
||||
{/if}
|
||||
<span class={cx('--toggle__appearance')}>
|
||||
<svg class={cx('--toggle__check')} width="6" height="5" viewBox="0 0 6 5">
|
||||
<path d="M2.2403 2.7299L4.9245 0 6 1.1117 2.2384 5 0 2.6863 1.0612 1.511z" />
|
||||
</svg>
|
||||
</span>
|
||||
</label>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue