import clsx from 'clsx' import { ComponentProps } from 'react' export type InputThemedTextProps = ComponentProps<'p'> & { // A unit to display to the right of the content. unit?: string // Applies to the unit only. unitClassName?: string } export const InputThemedText = ({ className, children, unit, unitClassName, ...props }: InputThemedTextProps) => (
{unit}
)}