@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
12 lines (11 loc) • 354 B
TypeScript
/**
* HTML Element
*
*/
import type { HTMLAttributes, Ref } from 'react';
import type { SpacingProps } from '../../shared/types';
type CodeProps = SpacingProps & HTMLAttributes<HTMLElement>;
declare function Code({ className, ref, ...props }: CodeProps & {
ref?: Ref<HTMLElement>;
}): import("react/jsx-runtime").JSX.Element;
export default Code;