# Component/Tooltip/Disabled > Props: component-tooltip-disabled.props.txt ## Examples ### Base ```tsx { args: { disabled: true, content: 'This is a disabled tooltip' }, render: args => } ``` ### Enabled Disabled ```tsx { render: () => } ``` ### Interactive Example ```tsx { args: { disabled: true, content: 'Interactive Tooltip Example' }, render: args => } ``` ### Long Content ```tsx { render: () => } ``` ### With Different Children ```tsx { args: { disabled: true }, render: args => {['Button', 'Radio', 'Checkbox', 'Switch', 'Textarea', 'Input', 'Dropdown'].map((item, index) => {item === 'Button' ? : item === 'Radio' ? {item} : item === 'Checkbox' ? {item} : item === 'Switch' ? {item} : item === 'Textarea' ? : item === 'Input' ? : item === 'Dropdown' ? : <>} )} } ``` ### With Different Children Click ```tsx { args: { disabled: true, openerTriggerEvent: 'click' }, render: args => {['Button', 'Radio', 'Checkbox', 'Switch', 'Textarea', 'Input', 'Dropdown'].map((item, index) => {item === 'Button' ? : item === 'Radio' ? {item} : item === 'Checkbox' ? {item} : item === 'Switch' ? {item} : item === 'Textarea' ? : item === 'Input' ? : item === 'Dropdown' ? : <>} )} } ```