We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaaeb0b commit ae58a21Copy full SHA for ae58a21
1 file changed
src/components/foundation/grid/Container.d.ts
@@ -2,16 +2,24 @@ import * as React from 'react';
2
3
export type ContainerChildren = React.ReactNode[] | React.ReactNode | string;
4
5
-export type ContainerAs = 'article' | 'aside' | 'div' |'header' | 'footer' | 'main' | 'nav' | 'section';
+export type ContainerAs =
6
+ | 'article'
7
+ | 'aside'
8
+ | 'div'
9
+ | 'header'
10
+ | 'footer'
11
+ | 'main'
12
+ | 'nav'
13
+ | 'section';
14
15
export interface ContainerProps {
16
/**
- * Container children node (should be Rows)
- */
17
+ * Container children node (should be Rows)
18
+ */
19
children?: ContainerChildren;
20
- * Container with no outer margins
21
+ * Container with no outer margins
22
23
fluid?: boolean;
24
spacing?: string;
25
role?: string;
0 commit comments