Skip to main content
Clever Ops

Room & Suite Card

A hotel room card in serif calm, framed view placeholder, quiet amenity icons, the from-rate in tabular figures with per-night whispered, and a single reserved booking accent.

Preview & code

Loading Room & Suite Card preview

Installation

pnpm dlx shadcn@latest add @cleverui/room-suite-card

Requires the @cleverui registry in your components.json, a one-off, two-line setup.

Usage

tsx
import { RoomSuiteCard } from '@/components/ui/room-suite-card'
Exampletsx
import { Bath, Maximize2, Wifi, Wind } from 'lucide-react'
import { RoomSuiteCard } from '@/components/ui/room-suite-card'

export default function RoomSuiteCardDemo() {
  return (
    <div className="mx-auto flex w-full max-w-sm justify-center px-4 py-10 sm:px-6 sm:py-14">
      <RoomSuiteCard
        name="Harbourview King"
        viewLabel="Harbour outlook · Level 9"
        details="King bed · 42 m² · Sleeps 2"
        description="Wake to the ferries crossing below, linen light, quiet rooms, the city still half-asleep."
        amenities={[
          { label: 'Rain shower', icon: <Bath /> },
          { label: 'Floor-to-ceiling glass', icon: <Maximize2 /> },
          { label: 'High-speed wifi', icon: <Wifi /> },
          { label: 'Balcony', icon: <Wind /> },
        ]}
        rate="$540"
        ratePrefix="From"
        rateSuffix="per night"
        ctaLabel="Reserve"
        href="#reserve-harbourview"
      />
    </div>
  )
}

The example itself also uses lucide-react , install it too if you copy the example as-is (the component itself does not need it).

API reference

RoomSuiteCard accepts the following props.

PropTypeDefaultDescription
name*stringserif room name, e.g. 'Harbourview King'
viewLabelstringspaced small-caps line pinned to the placeholder's lower edge
detailsstringone quiet spec line, e.g. 'King bed · 42 m² · Sleeps 2'
descriptionstringone evocative place-first sentence
amenitiesRoomAmenity[]quiet icon row; hairline dot when icon omitted
rate*stringPREFORMATTED from-rate like '$540', never formatted in render
ratePrefixstring'From'
rateSuffixstring'per night'
ctaLabelstring'Reserve'
hrefstringreserve destination; renders the CTA as an anchor
onReserve() => voidCTA renders as a button when set and href is absent

…plus everything from Omit< React.HTMLAttributes<HTMLElement>, 'onDrag' | 'onDragStart' | 'onDragEnd' | 'onAnimationStart' >: className, event handlers, aria attributes and the rest pass straight through.

Referenced types

Typestsx
export interface RoomAmenity {
  label: string
  icon?: React.ReactNode
}

Frequently asked questions

How do I install the Room & Suite Card component?

Register the @cleverui registry in your components.json ("@cleverui": "https://cleverops.com.au/r/{name}.json"), then run `npx shadcn@latest add @cleverui/room-suite-card`. The shadcn CLI copies the source into your project, you own the code from that point. You can also copy the source directly from this page.

What dependencies does Room & Suite Card require?

Room & Suite Card uses motion on top of React and Tailwind CSS. You don't need to install it manually, the shadcn CLI resolves and installs npm dependencies automatically when you add the component.

Can I theme Room & Suite Card to match my brand?

Yes. The component is styled entirely with Tailwind utilities over standard design tokens (primary, background, muted, border), so it inherits your existing shadcn/ui theme automatically. Change your CSS variables and the component follows, no source edits needed for palette, radius, or fonts.

Want this built for you?

CleverUI is built by the Clever Ops web team. If you'd rather ship a hand-coded, fast, custom website than assemble one, we build them for Australian businesses every week.

Explore web development services