tm-reuseable-components
Version:
This is a reuseable components lib made for TextMercato
10 lines (9 loc) • 314 B
TypeScript
import { ReactNode } from "react";
export interface AppbarProps {
className?: string;
children?: ReactNode;
color?: 'default' | 'inherit' | 'primary' | 'secondary' | 'transparent';
enableColorOnDark?: boolean;
position?: 'absolute' | 'fixed' | 'relative' | 'static' | 'sticky';
sx?: any;
}