@plurid/plurid-ui-components-react
Version:
Plurid User Interface Components for React
15 lines (14 loc) • 365 B
TypeScript
import React from 'react';
export interface ScrollableLineProperties {
text: string;
style?: React.CSSProperties;
className?: string;
}
/**
* Renders a horizontal scrollable line of text
* based on the width of the container.
*
* @param properties
*/
declare const ScrollableLine: React.FC<ScrollableLineProperties>;
export default ScrollableLine;