Merge pull request #205 from danilowoz/feat/native-path-component

Feat/native path component
This commit is contained in:
Danilo Woznica
2020-06-22 13:32:54 +01:00
committed by GitHub
4 changed files with 1003 additions and 697 deletions

1690
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -62,7 +62,7 @@
"@storybook/addon-notes": "5.2.8",
"@storybook/addons": "5.2.8",
"@storybook/react": "5.2.8",
"@storybook/storybook-deployer": "^2.8.1",
"@storybook/storybook-deployer": "^2.8.6",
"@types/jest": "24.0.24",
"@types/react": "16.9.17",
"@types/react-dom": "16.9.4",
@@ -75,7 +75,7 @@
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"bundlesize": "0.18.0",
"commitizen": "4.0.3",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "3.0.2",
"eslint": "6.8.0",
"eslint-plugin-jest": "23.1.1",

View File

@@ -1,5 +1,5 @@
import * as React from 'react'
import { Circle, Rect } from 'react-native-svg'
import { Circle, Path, Rect } from 'react-native-svg'
import { Facebook, IContentLoaderProps } from '.'
import Svg from './Svg'
@@ -7,6 +7,6 @@ import Svg from './Svg'
const ContentLoader: React.FC<IContentLoaderProps> = props =>
props.children ? <Svg {...props} /> : <Facebook {...props} />
export { Circle, Rect }
export { Circle, Rect, Path }
export default ContentLoader

View File

@@ -17,5 +17,5 @@ export { default as Code } from './presets/CodeStyle'
export { default as List } from './presets/ListStyle'
export { default as BulletList } from './presets/BulletListStyle'
export { Circle, Rect } from './ContentLoader'
export { Circle, Rect, Path } from './ContentLoader'
export default ContentLoader