Skip to content

Commit

Permalink
fix: make FibonacciRetracement appearance prop type the same as `Ea…
Browse files Browse the repository at this point in the history
…chFibRetracementProps` ones
  • Loading branch information
rdeanar authored and markmcdowell committed Jul 12, 2022
1 parent 6a80333 commit 28d324f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/interactive/src/FibonacciRetracement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ interface FibonacciRetracementProps {
readonly currentPositionRadius?: number;
readonly retracements: any[];
readonly appearance: {
readonly stroke: string;
readonly strokeStyle: string;
readonly strokeWidth: number;
readonly strokeOpacity: number;
readonly fontFamily: string;
readonly fontSize: number;
readonly fontFill: string;
Expand Down Expand Up @@ -59,9 +58,8 @@ export class FibonacciRetracement extends React.Component<FibonacciRetracementPr
currentPositionStrokeWidth: 3,
currentPositionRadius: 4,
appearance: {
stroke: "#000000",
strokeStyle: "#000000",
strokeWidth: 1,
strokeOpacity: 1,
fontFamily: "-apple-system, system-ui, Roboto, 'Helvetica Neue', Ubuntu, sans-serif",
fontSize: 11,
fontFill: "#000000",
Expand Down

0 comments on commit 28d324f

Please sign in to comment.