feat(frontend): add react spa with wishlist flows and public profile
This commit is contained in:
6
apps/frontend/src/components/ui/Label.tsx
Normal file
6
apps/frontend/src/components/ui/Label.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
import type { LabelHTMLAttributes } from 'react';
|
||||
import { cn } from '@/lib/cn';
|
||||
|
||||
export function Label({ className, ...rest }: LabelHTMLAttributes<HTMLLabelElement>) {
|
||||
return <label className={cn('field__label', className)} {...rest} />;
|
||||
}
|
||||
Reference in New Issue
Block a user