non-fungible-apps/ui/src/components/layout/flex.styles.ts

11 lines
269 B
TypeScript

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