UI logoUIUI Components

Front Door

Smart lock front door card with live status

Front Door
Smart Lock Pro
LockedIcon
Live
import { Badge } from "@/components/ui/badge"import {    Card,    CardAction,    CardContent,    CardDescription,    CardHeader,    CardTitle,} from "@/components/ui/card"import { IconPlaceholder } from "@/components/icon-placeholder"export function FrontDoor() {    return (        <Card>            <CardHeader>                <CardTitle>Front Door</CardTitle>                <CardDescription>Smart Lock Pro</CardDescription>                <CardAction>                    <div className="flex items-center gap-1.5 text-sm text-muted-foreground">                        Locked                        <IconPlaceholder                            lucide="LockIcon"                            tabler="IconLock"                            hugeicons="SquareLock02Icon"                            phosphor="LockKeyIcon"                            remixicon="RiLockLine"                            className="size-4"                        />                    </div>                </CardAction>            </CardHeader>            <CardContent>                <div className="relative flex aspect-video items-center justify-center overflow-hidden rounded-lg bg-muted bg-[repeating-linear-gradient(45deg,transparent,transparent_10px,var(--border)_10px,var(--border)_11px)]">                    <Badge                        variant="destructive"                        className="absolute top-2 right-2"                    >                        Live                    </Badge>                </div>            </CardContent>        </Card>    )}