@workday/canvas-kit-preview-react
Version:
Canvas Kit Preview is made up of components that have the full design and a11y review, are part of the DS ecosystem and are approved for use in product. The API's could be subject to change, but not without strong communication and migration strategies.
15 lines • 742 B
TypeScript
import { ExtractProps } from '@workday/canvas-kit-react/common';
import { Box } from '@workday/canvas-kit-react/layout';
import { CSProps } from '@workday/canvas-kit-styling';
export interface StyledRadioButtonProps extends CSProps {
variant?: 'inverse' | undefined;
}
export interface StyledRadioButtonProps extends ExtractProps<typeof Box, 'input'> {
variant?: 'inverse' | undefined;
}
/**
* Use `StyledRadioButton` when you want a styled radio button on its own without using `RadioGroup`.
* You will need to handle behavior and accessibility.
*/
export declare const StyledRadioButton: import("@workday/canvas-kit-react/common").ElementComponent<"input", StyledRadioButtonProps>;
//# sourceMappingURL=StyledRadioButton.d.ts.map