Form Status
Installation
Install the following dependencies
npm install clsx lucide-react
Copy and paste the following code into your project
form/form-status/index.tsx
import { clsx } from 'clsx';import { CheckCircle, CircleAlert } from 'lucide-react';/** * This component supports various CSS variables for theming. Here's a comprehensive list, along * with their default values: * * ```css * :root { * --form-status-light-background-error: color-mix(in oklab, hsl(var(--error)), white 75%); * --form-status-light-text-error: color-mix(in oklab, hsl(var(--error)), black 75%); * --form-status-light-background-success: color-mix(in oklab, hsl(var(--success)), white 75%); * --form-status-light-text-success: color-mix(in oklab, hsl(var(--success)), black 75%); * --form-status-dark-background-error: color-mix(in oklab, hsl(var(--error)), white 75%); * --form-status-dark-text-error: color-mix(in oklab, hsl(var(--error)), black 75%); * --form-status-dark-background-success: color-mix(in oklab, hsl(var(--success)), white 75%); * --form-status-dark-text-success: color-mix(in oklab, hsl(var(--success)), black 75%); * } * ``` */export function FormStatus({ className, children, type = 'success', colorScheme = 'light', ...rest}: React.ComponentPropsWithoutRef<'div'> & { type?: 'error' | 'success'; colorScheme?: 'light' | 'dark';}) { return ( <div {...rest} className={clsx( 'flex items-center gap-3 rounded-xl px-4 py-3 text-sm', { light: { error: 'bg-[var(--form-status-light-background-error,color-mix(in_oklab,hsl(var(--error)),white_75%))] text-[var(--form-status-light-text-error,color-mix(in_oklab,hsl(var(--error)),black_75%))]', success: 'bg-[var(--form-status-light-background-success,color-mix(in_oklab,hsl(var(--success)),white_75%))] text-[var(--form-status-light-text-success,color-mix(in_oklab,hsl(var(--success)),black_75%))]', }[type], dark: { error: 'bg-[var(--form-status-dark-background-error,color-mix(in_oklab,hsl(var(--error)),white_60%))] text-[var(--form-status-dark-text-error,color-mix(in_oklab,hsl(var(--error)),black_60%))]', success: 'bg-[var(--form-status-dark-background-success,color-mix(in_oklab,hsl(var(--success)),white_60%))] text-[var(--form-status-dark-text-success,color-mix(in_oklab,hsl(var(--success)),black_60%))]', }[type], }[colorScheme], className, )} > {type === 'error' && <CircleAlert className="shrink-0" size={20} strokeWidth={1.5} />} {type === 'success' && <CheckCircle className="shrink-0" size={20} strokeWidth={1.5} />} {children} </div> );}
Usage
import { FormStatus } from '@/vibes/soul/form/form-status';function Usage() { return ( <FormStatus>Login was successful</FormStatus> <FormStatus type="error">Could not login</FormStatus> );}
API Reference
Prop | Type | Default |
---|---|---|
children* | ReactNode | |
className | string | |
type | 'error' | 'success' | 'success' |
colorScheme | 'light' | 'dark' | 'light' |
CSS Variables
This component supports various CSS variables for theming. Here's a comprehensive list.
:root { --form-status-light-background-error: color-mix(in oklab, hsl(var(--error)), white 75%); --form-status-light-text-error: color-mix(in oklab, hsl(var(--error)), black 75%); --form-status-light-background-success: color-mix(in oklab, hsl(var(--success)), white 75%); --form-status-light-text-success: color-mix(in oklab, hsl(var(--success)), black 75%); --form-status-dark-background-error: color-mix(in oklab, hsl(var(--error)), white 75%); --form-status-dark-text-error: color-mix(in oklab, hsl(var(--error)), black 75%); --form-status-dark-background-success: color-mix(in oklab, hsl(var(--success)), white 75%); --form-status-dark-text-success: color-mix(in oklab, hsl(var(--success)), black 75%);}