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