fix(grid): fix typo
This commit is contained in:
@@ -9,7 +9,7 @@ const baseStyles = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const GridRenderer = memo(({
|
const GridRenderer = memo(({
|
||||||
gap = 24, strokeColor = '#999', strokeWidth = 0.1, styles,
|
gap = 24, strokeColor = '#999', strokeWidth = 0.1, style,
|
||||||
className
|
className
|
||||||
}) => {
|
}) => {
|
||||||
const {
|
const {
|
||||||
@@ -36,7 +36,7 @@ const GridRenderer = memo(({
|
|||||||
<svg
|
<svg
|
||||||
width={width}
|
width={width}
|
||||||
height={height}
|
height={height}
|
||||||
style={{ ...baseStyles, ...styles }}
|
style={{ ...baseStyles, ...style }}
|
||||||
className={gridClasses}
|
className={gridClasses}
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
|
|||||||
Reference in New Issue
Block a user