Skip to content

Commit

Permalink
add strokeDashoffset prop to LinePath
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacek Grzybowski committed Jun 20, 2017
1 parent 927b5ac commit 7ad4af5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/vx-shape/src/shapes/LinePath.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default function LinePath({
stroke = 'steelblue',
strokeWidth = 2,
strokeDasharray = '',
strokeDashoffset = 0,
fill = 'none',
curve = curveLinear,
glyph,
Expand All @@ -31,6 +32,7 @@ export default function LinePath({
stroke={stroke}
strokeWidth={strokeWidth}
strokeDasharray={strokeDasharray}
strokeDashoffset={strokeDashoffset}
fill={fill}
/>
{glyph &&
Expand Down

0 comments on commit 7ad4af5

Please sign in to comment.