14 lines
484 B
Text
14 lines
484 B
Text
|
---
|
||
|
const { title } = Astro.props;
|
||
|
|
||
|
interface Props {
|
||
|
title: string;
|
||
|
}
|
||
|
---
|
||
|
|
||
|
<button
|
||
|
type="submit"
|
||
|
class="inline-flex w-full items-center justify-center gap-x-2 rounded-lg border border-transparent bg-yellow-400 px-4 py-3 text-sm font-semibold text-neutral-700 hover:bg-yellow-500 disabled:pointer-events-none disabled:opacity-50 dark:focus:outline-none 2xl:text-base focus-visible:ring outline-none ring-zinc-500 dark:ring-zinc-200 transition duration-300"
|
||
|
>{title}</button
|
||
|
>
|