import React, { CSSProperties, FC } from 'react' import SVGDown from '../../svg/down.svg' import classNames from 'classnames' interface IconDownUpProps { active?: boolean disabled?: boolean className?: string style?: CSSProperties } const IconDownUp: FC = ({ active, disabled, className, style }) => { return ( ) } export default IconDownUp export type { IconDownUpProps }