@praetorian-chariot/ui
Version:
The UI component library for Chariot, built with Tailwind CSS and React.
10 lines • 422 B
TypeScript
import React from 'react';
interface OverflowTextProps extends React.HTMLAttributes<HTMLDivElement> {
text: string;
className?: string;
truncateType?: 'center' | 'end';
placement?: 'top' | 'right' | 'bottom' | 'left';
}
export declare const OverflowText: React.MemoExoticComponent<(props: OverflowTextProps) => import("react/jsx-runtime").JSX.Element>;
export {};
//# sourceMappingURL=OverflowText.d.ts.map