Skip to content

Commit

Permalink
fix(marimekko): support null axis* props
Browse files Browse the repository at this point in the history
  • Loading branch information
wyze committed Jul 14, 2021
1 parent 1c42e11 commit d8dbea2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/marimekko/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ export type CommonProps<RawDatum> = {
innerPadding: number

// axes and grid
axisTop?: AxisProps
axisRight?: AxisProps
axisBottom?: AxisProps
axisLeft?: AxisProps
axisTop?: AxisProps | null
axisRight?: AxisProps | null
axisBottom?: AxisProps | null
axisLeft?: AxisProps | null
enableGridX: boolean
gridXValues?: number[]
enableGridY: boolean
Expand Down

0 comments on commit d8dbea2

Please sign in to comment.