import React, { FC, HTMLAttributes, MouseEvent } from 'react'
import SVGCloseup from '../../svg/closeup.svg'
import SVGExpand from '../../svg/expand.svg'
interface IconExpandProps extends HTMLAttributes {
onClick(e: MouseEvent): void
active: boolean
}
const IconExpand: FC = ({ active, onClick, ...rest }) => {
return (
{active ? (
) : (
)}
)
}
export default IconExpand