diff --git a/src/lib/components/BotonSeguir.svelte b/src/lib/components/BotonSeguir.svelte index a6a27ec..cd28885 100644 --- a/src/lib/components/BotonSeguir.svelte +++ b/src/lib/components/BotonSeguir.svelte @@ -13,7 +13,10 @@ import CardError from './CardError.svelte'; import { cacheSeguidos } from '@/stores/cacheSeguidos.svelte'; - let { post }: { post: Omit, 'authorId'> & { authorId: string } } = $props(); + let { + post, + variant = 'icon-lg' + }: { post: Omit, 'authorId'> & { authorId: string }; variant?: string } = $props(); let seguido: Boolean | null = $state(null); @@ -59,7 +62,7 @@