import React from 'react' import { color } from '../_utils/branding' import { BaseIcon, BaseIconDefaultProps, Icon } from '../_utils/icon' export type MyRidesIconProps = Icon & Readonly<{ active?: boolean }> export const MyRidesIcon = ({ active, ...props }: MyRidesIconProps) => ( ) MyRidesIcon.defaultProps = { ...BaseIconDefaultProps, active: false, }