Skip to content

Commit ae58a21

Browse files
committed
fix(linter): Add space before pipe
1 parent aaaeb0b commit ae58a21

1 file changed

Lines changed: 13 additions & 5 deletions

File tree

src/components/foundation/grid/Container.d.ts

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,24 @@ import * as React from 'react';
22

33
export type ContainerChildren = React.ReactNode[] | React.ReactNode | string;
44

5-
export type ContainerAs = 'article' | 'aside' | 'div' |'header' | 'footer' | 'main' | 'nav' | 'section';
5+
export type ContainerAs =
6+
| 'article'
7+
| 'aside'
8+
| 'div'
9+
| 'header'
10+
| 'footer'
11+
| 'main'
12+
| 'nav'
13+
| 'section';
614

715
export interface ContainerProps {
816
/**
9-
* Container children node (should be Rows)
10-
*/
17+
* Container children node (should be Rows)
18+
*/
1119
children?: ContainerChildren;
1220
/**
13-
* Container with no outer margins
14-
*/
21+
* Container with no outer margins
22+
*/
1523
fluid?: boolean;
1624
spacing?: string;
1725
role?: string;

0 commit comments

Comments
 (0)