import { OverrideProps } from "../OverridableComponent"; import { Theme } from "../styles"; import { ToolbarClasses } from "./toolbarClasses"; import { SxProps } from "@suid/system"; import { ElementType, OverridableStringUnion } from "@suid/types"; import { JSXElement } from "solid-js"; export interface ToolbarPropsVariantOverrides { } export interface ToolbarTypeMap
{
name: "MuiToolbar";
defaultPropNames: "disableGutters" | "variant";
selfProps: {
/**
* The Toolbar children, usually a mixture of `IconButton`, `Button` and `Typography`.
* The Toolbar is a flex container, allowing flex item properites to be used to lay out the children.
*/
children?: JSXElement;
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial