UNPKG

@capgeminiuk/dcx-react-library

Version:

[![CircleCI](https://circleci.com/gh/Capgemini/dcx-react-library.svg?style=svg)](https://circleci.com/gh/Capgemini/dcx-react-library)

18 lines (17 loc) 407 B
import React from 'react'; type CodeSnippetProps = { /** * optional CSS class name */ className?: string; /** * content of the code snippet */ value: string | number; /** * Additional props/attributes */ props?: React.HTMLAttributes<HTMLElement>; }; export declare const CodeSnippet: ({ className, value, props }: CodeSnippetProps) => React.JSX.Element; export {};