UNPKG

@orfeas126/box-ui-elements

Version:
12 lines (11 loc) 437 B
import * as React from 'react'; import './AdvancedContentInsightsToggle.scss'; interface Props { hasDescription?: boolean; hasTooltip?: boolean; isChecked?: boolean; isDisabled: boolean; onChange?: (isEnabled: boolean) => void; } declare const AdvancedContentInsightsToggle: ({ hasDescription, hasTooltip, isChecked, isDisabled, onChange, }: Props) => React.JSX.Element; export default AdvancedContentInsightsToggle;