export interface WarningTextProps {
    /**
     * 	The title of the warning
     */
    title: string;
    /**
     * 	Optional to change the colour from a secondary colour to warning
     */
    isWarning?: boolean;
    /**
     * The WarningText contents
     */
    children?: React.ReactNode;
}
