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