non-fungible-apps/ui/src/components/layout/grid.styled.ts

10 lines
241 B
TypeScript

import { dripStitches } from '../../theme'; //TODO replace with absolute path
const { styled } = dripStitches;
export const Grid = styled('div', {
display: 'grid',
});
export type GridProps = React.ComponentProps<typeof Grid>;