"use client"; import type { ComponentRenderProps } from "./types"; import { baseClass, getCustomClass } from "./utils"; export function Input({ element }: ComponentRenderProps) { const { props } = element; const customClass = getCustomClass(props); return (
{props.label ? ( ) : null}
); }