feat(RunnersOverview): row selection

This commit is contained in:
2023-04-12 16:18:45 +02:00
parent c5e8409079
commit 6993511c67
2 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<script>
let className = "";
export { className as class };
export let type;
</script>
<input
class={`border-1 border-stone-300 border rounded-md shadow ${className} ${
type === "checkbox" && "w-5 h-5 text-orange-400"
}`}
{type}
{...$$restProps}
on:click
on:change
on:keydown
on:keyup
on:mouseenter
on:mouseleave
/>