UNPKG

@theguild/components

Version:
18 lines (17 loc) 332 B
import { jsx } from "react/jsx-runtime"; import { cn } from "../cn"; function Stud(props) { return /* @__PURE__ */ jsx( "div", { ...props, className: cn( "w-fit rounded-lg bg-[linear-gradient(135deg,#68A8B6,#3B736A)] p-[9px] text-white", props.className ) } ); } export { Stud };