diff --git a/packages/react/types/css.d.ts b/packages/react/types/css.d.ts index a66a92b3..4aa2c50f 100644 --- a/packages/react/types/css.d.ts +++ b/packages/react/types/css.d.ts @@ -1300,6 +1300,15 @@ export interface StandardLonghandProperties { * */ gridTemplateRows?: Property.GridTemplateRows; + /** + * The **`grid-gap`** CSS property sets the size of the gap (gutter) between between rows and columns. + * + * **Syntax**: `normal | ` + * + * **Initial value**: `normal` + * + */ + gridGap?: Property.GridGap; /** * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box. * @@ -4840,6 +4849,15 @@ export interface StandardLonghandPropertiesHyphen { * */ "grid-template-rows"?: Property.GridTemplateRows; + /** + * The **`grid-gap`** CSS property sets the size of the gap (gutter) between between rows and columns. + * + * **Syntax**: `normal | ` + * + * **Initial value**: `normal` + * + */ + "grid-gap"?: Property.GridGap; /** * The **`hanging-punctuation`** CSS property specifies whether a punctuation mark should hang at the start or end of a line of text. Hanging punctuation may be placed outside the line box. *