import React from 'react'; import cn from "classnames"; function Label({ className, topValue, topValueSize = 'text-base', bottomValue, topMuted = false, bottomMuted = false, horizontal = false }) { return (
{ topValue }
{ bottomValue }
); } Label.displayName = "Label"; export default Label;