@wordpress/components
Version:
UI components for WordPress.
16 lines (13 loc) • 379 B
text/typescript
/**
* External dependencies
*/
// eslint-disable-next-line no-restricted-imports
import type { CSSProperties } from 'react';
/**
* Internal dependencies
*/
import type { HStackAlignment, Props as HStackProps } from '../h-stack/types';
export type Props = HStackProps & {
alignment?: HStackAlignment | CSSProperties[ 'alignItems' ];
spacing?: CSSProperties[ 'width' ];
};