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