Skip to content

Commit

Permalink
WIP #2: Minor formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
BaibhaVatsa committed Nov 28, 2019
1 parent 5c214c3 commit abe0065
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/ArrowComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ type ArrowProps = {
disabled: boolean;
}

const vanillaArrowStyle = {boxShadow: "none", background: "#f4f4f4"}
const vanillaArrowStyle = {
boxShadow: "none",
background: "#f4f4f4"
}

const ArrowComponent: React.FC<ArrowProps> = (props: ArrowProps) => {
const directionNumber = (props.direction === "right") ? 1 : -1;
Expand Down

0 comments on commit abe0065

Please sign in to comment.