import React from 'react' import { StyledArrowIcon, StyledRideAxis } from './RideAxis.style' export type RideAxisProps = Readonly<{ from?: string to?: string }> export const RideAxis = ({ from, to, ...props }: RideAxisProps) => ( {from && {from}} {from && to && } {to && {to}} )