Skip to content

Commit

Permalink
fix(grid): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
moklick committed Oct 7, 2019
1 parent 5c54faa commit 5cd3dc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/container/GridRenderer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const baseStyles = {
};

const GridRenderer = memo(({
gap = 24, strokeColor = '#999', strokeWidth = 0.1, styles,
gap = 24, strokeColor = '#999', strokeWidth = 0.1, style,
className
}) => {
const {
Expand All @@ -36,7 +36,7 @@ const GridRenderer = memo(({
<svg
width={width}
height={height}
style={{ ...baseStyles, ...styles }}
style={{ ...baseStyles, ...style }}
className={gridClasses}
>
<path
Expand Down

0 comments on commit 5cd3dc6

Please sign in to comment.