@yamada-ui/radio
Version:
Yamada UI radio component
23 lines (20 loc) • 579 B
TypeScript
import * as _yamada_ui_core from '@yamada-ui/core';
import { HTMLUIProps } from '@yamada-ui/core';
interface RadioCardLabelProps extends HTMLUIProps {
/**
* If `true`, the icon will be displayed.
*
* @default true
*/
withIcon?: boolean;
/**
* The props for the label content.
*/
contentProps?: HTMLUIProps<"span">;
/**
* The props for the icon.
*/
iconProps?: HTMLUIProps;
}
declare const RadioCardLabel: _yamada_ui_core.Component<"div", RadioCardLabelProps>;
export { RadioCardLabel, type RadioCardLabelProps };