Documentation
Toast

Toast

    Example

    import { Toast } from '@i4o/catalystui'
     
    export default () => {
    	return (
    		<Toast
    			action='Okay'
    			description='This is your starter pokemon. Take good care of it.'
    			duration={5000}
    			trigger='Show Toast'
    			title='You have chosen Chikorita'
    		/>
    	)
    }

    Props

    NameTypeDefaultDescription
    triggerReactNode | stringnullThe element that triggers the toast.
    titlestringnullThe title of the toast.
    descriptionstringnullThe description of the toast.
    durationnumber5000The duration of the toast in milliseconds.
    actionReactNodenullThe action button of the toast.
    actionAltTextstringnullAlt text for action button.
    dismissbooleantrueIf toast should have a dismiss button.
    defaultOpenbooleanfalseDefault open state of the toast. Use when a trigger is not needed.