@clayui/drop-down
Version:
ClayDropDown component
22 lines (21 loc) • 399 B
JavaScript
import classnames from "classnames";
import React from "react";
function Caption({
children,
className,
...otherProps
}) {
return /* @__PURE__ */ React.createElement(
"div",
{
...otherProps,
className: classnames("dropdown-caption", className),
role: "presentation"
},
children
);
}
var Caption_default = Caption;
export {
Caption_default as default
};