@kopexa/sight
Version:
Kopexa Sight Design System — React component library for GRC applications
21 lines (18 loc) • 810 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { HTMLArkProps } from '@ark-ui/react/factory';
import { RadiomarkVariantProps } from '@kopexa/theme';
interface RadiomarkProps extends Omit<HTMLArkProps<"span">, keyof RadiomarkVariantProps>, RadiomarkVariantProps {
/** Whether the mark is checked */
checked?: boolean;
/** Whether the mark is disabled */
disabled?: boolean;
/** Skip the recipe — the caller applies its own className */
unstyled?: boolean;
}
/**
* Primitive radio dot used inside `RadioCardItem`. Exposed so consumers
* can build custom radio-style controls that share the same visual
* language as the design system.
*/
declare const Radiomark: (props: RadiomarkProps) => react_jsx_runtime.JSX.Element;
export { Radiomark, type RadiomarkProps };