@axeptio/design-system
Version:
Design System for Axeptio
21 lines (17 loc) • 419 B
TypeScript
export default Code;
type lang = 'javascript' | 'sql';
const langStatus = 'javascript' as lang;
type styles = 'atom-one-dark' | 'codepen-embed' | 'zen-burn';
const stylesStatus = 'atom-one-dark' as styles;
declare function Code({
code,
language,
showlines,
style
}: {
language: langStatus;
code: string;
showlines?: boolean;
style?: stylesStatus;
}): JSX.Element;
//# sourceMappingURL=index.d.ts.map