spoti-search/src/components/Header.tsx

18 lines
366 B
TypeScript

import React, { PropsWithChildren } from 'react';
import { Box } from 'grommet';
export const Header = (props: PropsWithChildren<{}>) => {
return (
<Box
tag='header'
direction='row'
align='center'
justify='center'
background='brand'
pad={{ left: 'medium', right: 'small', vertical: 'small' }}
style={{ zIndex: 1 }}
{...props}
/>
);
};