Skip to content

Commit

Permalink
Merge pull request #12 from voidagency/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
voidagency authored Dec 14, 2020
2 parents e64d4fe + b3a0446 commit 4c9cadd
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.0.8 (2020-12-14)

### Bug Fixes

* Icons: Prevent 'name' prop from being sent to html element ([:link:](https://github.com/voidagency/factory-react-ui/pull/11))

# 1.0.7 (2020-12-03)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.modern.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.modern.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vactory-ui",
"version": "1.0.7",
"version": "1.0.8",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icon/Icon.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const WrapperIcon = ({...rest}) => {
};

export const Icon = styled(WrapperIcon).withConfig({
shouldForwardProp: (prop, defaultValidatorFn) => { return !['sx', '__css', ...systemProps].includes(prop);}
shouldForwardProp: (prop, defaultValidatorFn) => { return !['sx', 'name', '__css', ...systemProps].includes(prop);}
}).attrs(props => ({
removeInlineStyle: true,
icon: props.name || props.icon,
Expand Down

0 comments on commit 4c9cadd

Please sign in to comment.