import type { ParentProps } from 'solid-js'; import { useFieldset } from './fieldset'; export interface InlineLinkProps extends ParentProps { href?: string; disabled?: boolean; onClick?: () => void; } const InlineLink = (props: InlineLinkProps) => { const fieldset = useFieldset(); const isDisabled = (): boolean => fieldset.disabled || !!props.disabled; return ( ); }; const inlineLinkClassNames = (isDisabled: () => boolean): string => { var cn = `text-accent text-left text-de`; if (isDisabled()) { cn += ` opacity-50`; } else { cn += ` hover:underline`; } return cn; }; export default InlineLink;