diff --git a/src/components/ArrowComponent.tsx b/src/components/ArrowComponent.tsx index a0772a3..81f5874 100644 --- a/src/components/ArrowComponent.tsx +++ b/src/components/ArrowComponent.tsx @@ -10,7 +10,10 @@ type ArrowProps = { disabled: boolean; } -const vanillaArrowStyle = {boxShadow: "none", background: "#f4f4f4"} +const vanillaArrowStyle = { + boxShadow: "none", + background: "#f4f4f4" +} const ArrowComponent: React.FC = (props: ArrowProps) => { const directionNumber = (props.direction === "right") ? 1 : -1;