'use client' import classNames from 'classnames' import { Heart } from 'components/Icons' import Text from 'components/Text' import useStore from 'store' interface Props { health: number hasLabel?: boolean classNames?: string } export default function AccountHealth(props: Props) { const enableAnimations = useStore((s) => s.enableAnimations) const healthBarWidth = (props.health / 100) * 53 return (