;
let {
+ block,
class: className,
color,
- error,
- fade,
start,
end,
- label,
size = 'md',
style,
...props
}: Props = $props();
-
\ No newline at end of file
+
+ {#if typeof start === 'string'}
+ {start}
+ {:else}
+ {@render start?.()}
+ {/if}
+
+ {#if typeof end === 'string'}
+ {end}
+ {:else}
+ {@render end?.()}
+ {/if}
+
\ No newline at end of file