@gechiui/components
Version:
UI components for GeChiUI.
28 lines (24 loc) • 510 B
text/typescript
/**
* External dependencies
*/
// eslint-disable-next-line no-restricted-imports
import type { SeparatorProps } from 'reakit';
/**
* Internal dependencies
*/
import type { SpaceInput } from '../ui/utils/space';
export interface OwnProps {
/**
* Adjusts all margins.
*/
margin?: SpaceInput;
/**
* Adjusts top margins.
*/
marginTop?: SpaceInput;
/**
* Adjusts bottom margins.
*/
marginBottom?: SpaceInput;
}
export interface Props extends Omit< SeparatorProps, 'children' >, OwnProps {}