import { ReactNode } from "react"

type TLabelStyleProps = {
  children: ReactNode
}

const LabelStyle = ({
  children
}: TLabelStyleProps) => {
  return (
    <span className="font-medium text-[16px] leading-[140%]">{children}</span>
  )
}

export default LabelStyle