chore: rename example parents folder to gift card

This commit is contained in:
rvcas
2023-03-11 22:45:25 -05:00
committed by Lucas
parent a522cd1e7d
commit 0147af8330
21 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { JSX } from "preact";
import { IS_BROWSER } from "$fresh/runtime.ts";
export function Button(props: JSX.HTMLAttributes<HTMLButtonElement>) {
return (
<button
{...props}
disabled={!IS_BROWSER || props.disabled}
class={`group inline-flex items-center justify-center rounded-full py-2 px-4 text-sm font-semibold focus:outline-none bg-blue-600 text-white hover:bg-blue-500 active:bg-blue-800 active:text-blue-100 ${props.class}`}
/>
);
}

View File

@@ -0,0 +1,21 @@
import { ComponentChild, JSX } from "preact";
export function Input(
{ children, id, ...props }: JSX.HTMLAttributes<HTMLInputElement>,
) {
return (
<div>
<label
for={id}
class="block mb-3 text-sm font-medium text-gray-700"
>
{children}
</label>
<input
{...props}
id={id}
class="block w-full appearance-none rounded-md border border-gray-200 bg-gray-50 px-3 py-2 text-gray-900 placeholder-gray-400 focus:border-blue-500 focus:bg-white focus:outline-none focus:ring-blue-500 sm:text-sm"
/>
</div>
);
}