import React from 'react' import { IconClose } from '../../../assets/icons' import { getGlobalStyle } from '../../../utils' import styles from './AsideInfoStore.module.css' interface AsideInfoStoreProps { children: React.ReactNode show: boolean style?: React.CSSProperties zIndex?: string handleClose: () => void } export const AsideInfoStore: React.FC = ({ show = true, zIndex = '', children, style = {}, handleClose = () => { } }) => { return (
{children}
) }