'use client'; import React from 'react'; import { useBreakpoint } from '../../hook/breakpoints.hook.js'; import { resolveResponsiveVariant } from '../../utils/breakpoint.util.js'; import { styles } from './hint.styles.js'; import { type HintProps } from './hint.types.js'; export function Hint({ className, tag: Tag = 'div', children, spacing = 'medium', ...props }: HintProps) { const breakpoint = useBreakpoint(); return ( {children} ); }