@momentum-ui/react-collaboration
Version:
Cisco Momentum UI Framework for React Collaboration Applications
11 lines (10 loc) • 625 B
TypeScript
import { FC } from 'react';
import { Props } from './TextToast.types';
import './TextToast.style.scss';
/**
* The `<TextToast />` component. This component is designed to retrieve props like the `text` to display and the `textAlignment`, which can be `center` or `left` at the moment.
* If no or an empty `text` is passed in, the component will not be rendered. If no `textAlignment` is passed in, the default alignment will be `center`.
* Also the `iconProps` from the `Icon` component can be passed in to render a Icon on the left-hand side of the text.
*/
declare const TextToast: FC<Props>;
export default TextToast;