UNPKG

@wordpress/components

Version:
16 lines (13 loc) 379 B
/** * 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' ]; };