Skip to content
This repository was archived by the owner on Jan 20, 2022. It is now read-only.

Commit 426d932

Browse files
committed
refactor(all): run prettier
1 parent 951387d commit 426d932

22 files changed

+57
-60
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react'
22
import { Image } from 'stardust'
33

4-
const ImageExample = () => <Image src='//placehold.it/100' />
4+
const ImageExample = () => <Image src="//placehold.it/100" />
55

66
export default ImageExample

docs/src/examples/components/Image/Types/index.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ import ComponentExample from 'docs/src/components/ComponentDoc/ComponentExample'
33
import ExampleSection from 'docs/src/components/ComponentDoc/ExampleSection'
44

55
const Types = () => (
6-
<ExampleSection title='Types'>
6+
<ExampleSection title="Types">
77
<ComponentExample
8-
title='Default'
9-
description='A default Image.'
10-
examplePath='components/Image/Types/ImageExample'
8+
title="Default"
9+
description="A default Image."
10+
examplePath="components/Image/Types/ImageExample"
1111
/>
1212
<ComponentExample
13-
title='Avatar'
14-
description='An image may be formatted to appear inline with text as an avatar.'
15-
examplePath='components/Image/Types/ImageExampleAvatar'
13+
title="Avatar"
14+
description="An image may be formatted to appear inline with text as an avatar."
15+
examplePath="components/Image/Types/ImageExampleAvatar"
1616
/>
1717
</ExampleSection>
1818
)

docs/src/examples/components/Image/Variations/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import ComponentExample from 'docs/src/components/ComponentDoc/ComponentExample'
33
import ExampleSection from 'docs/src/components/ComponentDoc/ExampleSection'
44

55
const Variations = () => (
6-
<ExampleSection title='Variations'>
6+
<ExampleSection title="Variations">
77
<ComponentExample
8-
title='Circular'
9-
description='An image may appear circular.'
10-
examplePath='components/Image/Variations/ImageExampleCircular'
8+
title="Circular"
9+
description="An image may appear circular."
10+
examplePath="components/Image/Variations/ImageExampleCircular"
1111
/>
1212
</ExampleSection>
1313
)

docs/src/examples/components/Layout/Types/LayoutExample.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react'
22
import { Layout } from 'stardust'
33

44
const LayoutExample = () => (
5-
<Layout debug start='Start content.' main='Main content.' end='End content.' />
5+
<Layout debug start="Start content." main="Main content." end="End content." />
66
)
77

88
export default LayoutExample

docs/src/examples/components/Layout/Types/LayoutExampleVertical.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react'
22
import { Layout } from 'stardust'
33

44
const LayoutExampleVertical = () => (
5-
<Layout debug vertical start='Start content.' main='Main content.' end='End content.' />
5+
<Layout debug vertical start="Start content." main="Main content." end="End content." />
66
)
77

88
export default LayoutExampleVertical

docs/src/examples/components/Layout/Types/index.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ import ComponentExample from 'docs/src/components/ComponentDoc/ComponentExample'
33
import ExampleSection from 'docs/src/components/ComponentDoc/ExampleSection'
44

55
const Types = () => (
6-
<ExampleSection title='Types'>
6+
<ExampleSection title="Types">
77
<ComponentExample
8-
title='Layout'
9-
description='A layout arranges content into areas.'
10-
examplePath='components/Layout/Types/LayoutExample'
8+
title="Layout"
9+
description="A layout arranges content into areas."
10+
examplePath="components/Layout/Types/LayoutExample"
1111
/>
1212
<ComponentExample
13-
title='Vertical'
14-
description='A layout can display its areas vertically.'
15-
examplePath='components/Layout/Types/LayoutExampleVertical'
13+
title="Vertical"
14+
description="A layout can display its areas vertically."
15+
examplePath="components/Layout/Types/LayoutExampleVertical"
1616
/>
1717
</ExampleSection>
1818
)

docs/src/examples/components/Layout/Variations/LayoutExample.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react'
22
import { Layout } from 'stardust'
33

44
const LayoutExample = () => (
5-
<Layout debug start='Start content.' main='Main content.' end='End content.' />
5+
<Layout debug start="Start content." main="Main content." end="End content." />
66
)
77

88
export default LayoutExample

docs/src/examples/components/Layout/Variations/LayoutExampleDisappearing.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const LayoutExampleDisappearing = () => (
55
<Layout
66
debug
77
disappearing
8-
main='This is the main content. Notice there is no layout container.'
8+
main="This is the main content. Notice there is no layout container."
99
/>
1010
)
1111

docs/src/examples/components/Layout/Variations/LayoutExampleGap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react'
22
import { Layout } from 'stardust'
33

44
const LayoutExampleGap = ({ knobs }) => (
5-
<Layout debug vertical={knobs.vertical} gap={knobs.gap} start='Start' main='Main' end='End' />
5+
<Layout debug vertical={knobs.vertical} gap={knobs.gap} start="Start" main="Main" end="End" />
66
)
77

88
export default LayoutExampleGap

docs/src/examples/components/Layout/Variations/LayoutExampleReducing.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ const LayoutExampleReducing = () => (
66
<Layout
77
debug
88
reducing
9-
main='Given single a piece of content, no area containers are rendered.'
9+
main="Given single a piece of content, no area containers are rendered."
1010
/>
1111
<br />
1212
<Layout
1313
debug
1414
reducing
15-
end='End content.'
16-
main='Areas are retained when there are multiple pieces of content.'
15+
end="End content."
16+
main="Areas are retained when there are multiple pieces of content."
1717
/>
1818
</div>
1919
)

0 commit comments

Comments
 (0)