Fix CheckBoxList SVG icons + Move docs source

This commit is contained in:
venashial
2022-05-25 17:22:54 -07:00
parent 8da6572074
commit 4ffc90f963
21 changed files with 284 additions and 250 deletions

View File

@@ -2,7 +2,7 @@
import type { SvelteComponent } from 'svelte';
export let placeholder = '';
export let icon: SvelteComponent;
export let icon: SvelteComponent = undefined;
export let value = '';
export let multiline = false;
export let id: string = undefined;
@@ -50,7 +50,7 @@
}
input.has-icon {
padding-left: 40px;
padding-left: 40px;
}
}
</style>