mirror of
https://github.com/System-End/site.git
synced 2026-04-19 23:22:49 +00:00
9 lines
217 B
JavaScript
9 lines
217 B
JavaScript
/** @jsxRuntime classic */
|
|
/** @jsx jsx */
|
|
import React from 'react'
|
|
import { jsx } from 'theme-ui'
|
|
import Icon from '@hackclub/icons'
|
|
|
|
const IconComponent = props => <Icon {...props} />
|
|
|
|
export default IconComponent
|