2022-04-18 16:08:58 +00:00
|
|
|
import InfoIcon from '../svgs/information-fill.svg'
|
2023-07-23 15:08:43 +00:00
|
|
|
import { useShowModal } from './modal'
|
2022-04-18 16:08:58 +00:00
|
|
|
|
2023-06-20 17:55:45 +00:00
|
|
|
export default function Info ({ children, iconClassName = 'fill-theme-color' }) {
|
2023-07-23 15:08:43 +00:00
|
|
|
const showModal = useShowModal()
|
2022-04-18 16:08:58 +00:00
|
|
|
|
|
|
|
return (
|
2023-07-23 15:08:43 +00:00
|
|
|
<InfoIcon
|
2023-07-24 18:35:05 +00:00
|
|
|
width={18} height={18} className={`${iconClassName} pointer ms-1`}
|
2023-07-23 15:08:43 +00:00
|
|
|
onClick={(e) => {
|
|
|
|
e.preventDefault()
|
|
|
|
showModal(onClose => children)
|
|
|
|
}}
|
|
|
|
/>
|
2022-04-18 16:08:58 +00:00
|
|
|
)
|
|
|
|
}
|