xxxxxxxxxx
type ButtonProps = {
children: React.ReactNode
}
const Button = ({ children }: ButtonProps) => <button>{children}</button>
export default function Card() {
return (
<Button>
click me
<i>svg icon</i>
</Button>
)
}