mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-03-01 09:51:55 +08:00
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
![]() |
const SvgIcon = ({ name, className }: { name: string; className?: string }) => {
|
||
|
const symbolId = `#icon-${name}`
|
||
|
return (
|
||
|
<svg aria-hidden="true" className={className}>
|
||
|
<use href={symbolId} fill="currentColor" />
|
||
|
</svg>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default SvgIcon
|