forked from coracle/flotilla
Add remove group, format
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import cx from 'classnames'
|
||||
import cx from "classnames"
|
||||
import Icon from "@lib/components/Icon.svelte"
|
||||
import Button from "@lib/components/Button.svelte"
|
||||
|
||||
@@ -7,10 +7,10 @@
|
||||
export let title
|
||||
</script>
|
||||
|
||||
<Button on:click class={cx($$props.class, "btn btn-neutral btn-lg text-left h-24")}>
|
||||
<div class="flex gap-6 py-4 flex-grow items-center">
|
||||
<Button on:click class={cx($$props.class, "btn btn-neutral btn-lg h-24 text-left")}>
|
||||
<div class="flex flex-grow items-center gap-6 py-4">
|
||||
<Icon class="bg-accent" size={7} {icon} />
|
||||
<div class="flex flex-col gap-1 flex-grow">
|
||||
<div class="flex flex-grow flex-col gap-1">
|
||||
<p class="text-bold">{title}</p>
|
||||
<p class="text-xs"><slot /></p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user