@capgeminiuk/dcx-react-library
Version:
[](https://circleci.com/gh/Capgemini/dcx-react-library)
22 lines (21 loc) • 474 B
TypeScript
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 {};