import IProps from "./typing";
import { IconConfig } from "../../config";

const defaultProps: IProps = {
  text: [],
  direction: "row",
  step: false,
  icon: IconConfig.NOTIFICATION_FILL,
  mode: "",
  color: "#f9ae3d",
  bgColor: "#fdf6ec",
  speed: 80,
  fontSize: 14,
  duration: 2000,
  disableTouch: true,
  justifyContent: "flex-start"
};

export default defaultProps;
