Files
claude-code/packages/@ant/ink/src/components/Spacer.tsx
2026-05-01 21:55:51 +08:00

11 lines
296 B
TypeScript

import React from 'react';
import Box from './Box.js';
/**
* A flexible space that expands along the major axis of its containing layout.
* It's useful as a shortcut for filling all the available spaces between elements.
*/
export default function Spacer() {
return <Box flexGrow={1} />;
}