"use client"; import { memo } from "react"; import InputLabelView from "./InputLabel.view"; import type { InputLabelProps } from "./InputLabel.types"; import { normalizeInputLabelSize, normalizeInputLabelPalette, } from "../../../lib/propNormalization"; const InputLabelContainer = memo( ({ label, helpIcon = false, asterisk = false, helperText = false, size: sizeProp = "S", palette: paletteProp = "Default", className = "", }) => { const size = normalizeInputLabelSize(sizeProp); const palette = normalizeInputLabelPalette(paletteProp); return ( ); }, ); InputLabelContainer.displayName = "InputLabel"; export default InputLabelContainer;