DividerProps: MuiDividerProps & {
    component?: React.ElementType;
    customAttribute?: {
        attribute: string;
        value: string | number;
    };
    negativeMargins?: boolean;
    variant?: MuiDividerProps["variant"];
}

Type declaration

  • Optionalcomponent?: React.ElementType

    The component used for the root node. Either a string to use a HTML element or a component.

  • OptionalcustomAttribute?: {
        attribute: string;
        value: string | number;
    }

    Test prop. Clickable and requested subcomponents will get suffixed with "-[ComponentName]".

    • attribute: string
    • value: string | number
  • OptionalnegativeMargins?: boolean

    Negative horizontal margins.

  • Optionalvariant?: MuiDividerProps["variant"]

    The variant to use.