Components
Loading preview...
A responsive book component.
@shugar
npx shadcn@latest add https://21st.dev/r/shugar/bookimport { Book } from "@/components/ui/book";
export default function VariantsDemo() {
return (
<div className="flex gap-8">
<Book
title="The user experience of the Frontend Cloud"
variant="simple"
width={196}
/>
<Book
title="The user experience of the Frontend Cloud"
variant="stripe"
width={196}
/>
</div>
);
}