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)

22 lines (21 loc) 474 B
import React from 'react'; type AbbreviateProps = { /** * optional CSS class name */ className?: string; /** * title of the abbreviate */ title?: string; /** * content of the code snippet */ value: string | number; /** * Additional props/attributes */ props?: React.HTMLAttributes<HTMLElement>; }; export declare const Abbreviate: ({ className, props, value, title }: AbbreviateProps) => React.JSX.Element; export {};