6 lines
162 B
TypeScript
6 lines
162 B
TypeScript
import { styled } from "@mui/material";
|
|
import NavbarBase from "./base";
|
|
export const SelectionBar = styled(NavbarBase)`
|
|
position: fixed;
|
|
z-index: 12;
|
|
`;
|