import React, { forwardRef } from 'react' import { cn } from 'ui' interface DisableInteractionProps extends React.HTMLAttributes { disabled?: boolean } /** * DisableInteraction component * * A utility component that wraps content and prevents all user interactions when disabled * including clicking, hovering, and text selection. * * @example * * * */ export const DisableInteraction = forwardRef( ({ disabled, style, className, ...props }, ref) => (
) ) DisableInteraction.displayName = 'DisableInteraction'