hensei-web/components/WeaponLabelIcon/index.tsx
2022-01-24 21:54:50 -08:00

17 lines
302 B
TypeScript

import React from 'react'
import './index.scss'
interface Props {
labelType: string
}
class WeaponLabelIcon extends React.Component<Props> {
render() {
return (
<i className={`WeaponLabelIcon ${this.props.labelType}`} />
)
}
}
export default WeaponLabelIcon