import React, { FC } from 'react' import { AppBar as MuiAppBar, SxProps } from '@mui/material' import { Color, Position } from 'types/app-bar' interface AppBarProps { sx?: SxProps, color?: Color, position?: Position, className?: string, children?: React.ReactNode } export const AppBar: FC = (props) => { // == Props ================================ const { children, sx, color = 'primary', position = 'fixed', className = '' } = props // == Hooks ================================ // == Functions ============================ // == Actions ============================== // == Template ============================= return ( {children} ) }