Skip to content

Commit 8376efa

Browse files
authored
Merge pull request #37 from stephenmathieson/patch-1
fix CloseSVG typo in readme
2 parents efab0d4 + 5816df5 commit 8376efa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ For example, the following code...
88
import React from 'react';
99
import CloseSVG from './close.svg';
1010

11-
const MyComponent = () => <CloseSvg />;
11+
const MyComponent = () => <CloseSVG />;
1212
```
1313

1414
will be transformed into...
@@ -17,7 +17,7 @@ will be transformed into...
1717
import React from 'react';
1818
const CloseSVG = () => <svg>{/* ... */}</svg>;
1919

20-
const MyComponent = () => <CloseSvg />;
20+
const MyComponent = () => <CloseSVG />;
2121
```
2222

2323
## Installation

0 commit comments

Comments
 (0)