import React, {FC} from "react"; import {__} from "../globals"; import classNames from "classnames"; export type FloatingMarkerProps = { prefix?: string, label: string, paddingRight?: string } export const FloatingMarker: FC = ({prefix, label, paddingRight}) => { return
{prefix && {prefix}:} {label}
{false &&
}
/* return
{prefix && {prefix}:} {label}
*/ }