mirror of
https://github.com/skidoodle/albert.lol.git
synced 2025-02-15 06:09:15 +01:00
13 lines
No EOL
263 B
TypeScript
13 lines
No EOL
263 B
TypeScript
import styles from 'styles/Home.module.scss'
|
|
|
|
const IconLayout = ({children}: {children: any}) => {
|
|
return(
|
|
<>
|
|
<div className={styles.iconLayout}>
|
|
{children}
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default IconLayout |