Skip to content

Commit f08d317

Browse files
committed
fix the SVG component export
1 parent 76ee113 commit f08d317

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
This project adheres to [Semantic Versioning](http://semver.org/). Every release, along with the migration instructions, is documented on the Github [Releases](https://github.com/airbnb/react-sketchapp/releases) page.
44

5+
## Version 3.2.6
6+
7+
- Fix the SVG component export
8+
59
## Version 3.2.5
610

711
- Fix Skpm taking the wrong entry point when requiring react-sketchapp

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-sketchapp",
3-
"version": "3.2.5",
3+
"version": "3.2.6",
44
"description": "A React renderer for Sketch.app",
55
"sideEffects": false,
66
"main": "lib/index.js",

src/components/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ export { Image } from './Image';
55
export { RedBox } from './RedBox';
66
export { View } from './View';
77
export { Text } from './Text';
8-
import * as Svg from './Svg';
8+
import Svg from './Svg';
99
export { Svg };

0 commit comments

Comments
 (0)