import React from 'react' import './index.scss' interface Props { id: string name: string type: 'character' | 'summon' | 'weapon' } const defaultProps = { active: false, blended: false, contained: false, buttonSize: 'medium' as const, } const ChangelogUnit = ({ id, type, name }: Props) => { function generateImageUrl() { let src = '' switch (type) { case 'character': src = `${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/chara-grid/${id}_01.jpg` break case 'weapon': src = `${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/weapon-grid/${id}.jpg` break case 'summon': src = `${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/summon-grid/${id}.jpg` break } return src } return (