Skip to content

Commit

Permalink
Merge pull request #81 from conglei/master
Browse files Browse the repository at this point in the history
fix the bug in crossSymbol so it can be rendered
  • Loading branch information
hshoff authored Jun 30, 2017
2 parents eb476f9 + ca73b8b commit a6b4c43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/vx-glyph/src/glyphs/Cross.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import cx from 'classnames';
import { symbol, symbolCross } from 'd3-shape';
import { Glyph } from './Glyph';
import Glyph from './Glyph';
import additionalProps from '../util/additionalProps';

export default function GlyphCross({
Expand All @@ -22,10 +22,10 @@ export default function GlyphCross({
className={cx('vx-glyph-cross', className)}
>
<path
d={path}
d={path()}
{...additionalProps(restProps)}
/>
{children}
</Glyph>
);
}
}

0 comments on commit a6b4c43

Please sign in to comment.