UNPKG

@shopify/shop-minis-react

Version:

React component library for Shopify Shop Minis with Tailwind CSS v4 support (source-only, requires TypeScript)

65 lines (64 loc) 1.63 kB
import { jsx as e } from "react/jsx-runtime"; import { cva as i } from "../../shop-minis-react/node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.js"; import { cn as a } from "../../lib/utils.js"; const l = i( "relative w-full rounded-lg border px-4 py-3 text-sm grid has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr] grid-cols-[0_1fr] has-[>svg]:gap-x-3 gap-y-0.5 items-start [&>svg]:size-4 [&>svg]:translate-y-0.5 [&>svg]:text-current", { variants: { variant: { default: "bg-card text-card-foreground", destructive: "text-destructive bg-card [&>svg]:text-current *:data-[slot=alert-description]:text-destructive/90" } }, defaultVariants: { variant: "default" } } ); function c({ className: t, variant: r, ...s }) { return /* @__PURE__ */ e( "div", { "data-slot": "alert", role: "alert", className: a(l({ variant: r }), t), ...s } ); } function g({ className: t, ...r }) { return /* @__PURE__ */ e( "div", { "data-slot": "alert-title", className: a( "col-start-2 line-clamp-1 min-h-4 font-medium tracking-tight", t ), ...r } ); } function u({ className: t, ...r }) { return /* @__PURE__ */ e( "div", { "data-slot": "alert-description", className: a( "text-muted-foreground col-start-2 grid justify-items-start gap-1 text-sm [&_p]:leading-relaxed", t ), ...r } ); } export { c as Alert, u as AlertDescription, g as AlertTitle }; //# sourceMappingURL=alert.js.map