@abgov/react-components
Version:
Government of Alberta - UI components for React
21 lines (20 loc) • 675 B
TypeScript
import { GoabSpacerHorizontalSpacing, GoabSpacerVerticalSpacing } from '@abgov/ui-components-common';
interface WCProps {
hspacing?: GoabSpacerHorizontalSpacing;
vspacing?: GoabSpacerVerticalSpacing;
testid?: string;
}
declare module "react" {
namespace JSX {
interface IntrinsicElements {
"goa-spacer": WCProps & React.HTMLAttributes<HTMLElement>;
}
}
}
export interface GoabSpacerProps {
hSpacing?: GoabSpacerHorizontalSpacing;
vSpacing?: GoabSpacerVerticalSpacing;
testId?: string;
}
export declare function GoabSpacer(props: GoabSpacerProps): import("react/jsx-runtime").JSX.Element;
export default GoabSpacer;