@kopexa/sight
Version:
Kopexa Sight Design System — React component library for GRC applications
10 lines (7 loc) • 370 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { CodeVariantProps } from '@kopexa/theme';
import { ComponentProps } from 'react';
interface CodeProps extends Omit<ComponentProps<"code">, "color" | "size" | "radius">, CodeVariantProps {
}
declare const Code: (originalProps: CodeProps) => react_jsx_runtime.JSX.Element;
export { Code, type CodeProps };