2025-04-01 10:38:02 +09:00

20 lines
344 B
TypeScript

import { css } from '@emotion/css';
/**
* A simple "flex: 1;" component you can use in combination with the Stack component(s), like so
*
* <Stack direction="row">
* <span>hello</span>
* <Spacer />
* <span>world</span>
* </Stack>
*/
export const Spacer = () => (
<span
className={css({
flex: 1,
})}
/>
);