UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

9 lines (8 loc) 333 B
import React from 'react'; import type { ValueProps } from '../../types'; export type ValueBooleanProps = ValueProps<boolean> & { trueText?: React.ReactNode; falseText?: React.ReactNode; }; declare function BooleanComponent(props: ValueBooleanProps): import("react/jsx-runtime").JSX.Element; export default BooleanComponent;