soda-material
Version:
A React(>=18) component library that may follow [Material Design 3](https://m3.material.io/components) (a.k.a. Material You)
16 lines (15 loc) • 635 B
TypeScript
/// <reference types="react" />
import './app-bar.scss';
/**
* @specs https://m3.material.io/components/top-app-bar/specs
*/
export declare const TopAppBar: import("react").ForwardRefExoticComponent<{
children?: React.ReactNode;
leadingNavigationIcon?: React.ReactNode;
trailingIcon?: React.ReactNode;
fixed?: boolean | undefined;
/**
* @default small
*/
sd?: "center" | "small" | "medium" | "large" | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "as" | "ref" | "children" | "leadingNavigationIcon" | "trailingIcon" | "fixed" | "sd"> & import("react").RefAttributes<HTMLDivElement>>;