OpenSourceUIOpenSourceUIOpensource UI
GitHubTwitter/X
  1. Home
  2. Components
  3. Buttons
  4. Bookmark Save Button
Back to ButtonsComponents / Buttons

Bookmark Save Button

Free Buttons React component — BookmarkSaveButton. MIT licensed, copy-paste ready for Next.js and Tailwind CSS.

Save for later — bookmark icon fills amber and label swaps to Saved. Square-ish control for articles and products.

Preview

Setup

How to use

Free for personal and commercial use. No UI attribution required. Include the MIT copyright notice when copying component source into your project. Read the MIT license.

  1. 1

    Run in your terminal:

    $npm install clsx tailwind-merge lucide-react
  2. 2

    Copy lib/cn.ts below. Skip if you already have cn().

  3. 3

    Copy the code below and create components/buttons/bookmark-save-button.tsx in your project.

  4. 4

    Import and render:

    Example

    import { BookmarkSaveButton } from "@/components/buttons/bookmark-save-button";

    <BookmarkSaveButton label="Save" savedLabel="Saved" />

lib/cn.ts

1
2
3
4
5
6
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
 
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}

components/buttons/bookmark-save-button.tsx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
"use client";
 
import { forwardRef, useState, type ComponentPropsWithoutRef } from "react";
 
import { cn } from "@/lib/cn";
import { Bookmark } from "lucide-react";
 
export type BookmarkSaveButtonProps = Readonly<
{
label?: string;
savedLabel?: string;
defaultSaved?: boolean;
} & ComponentPropsWithoutRef<"button">
>;
 
// Labels stack in one grid cell; outgoing fades out, incoming fades in after.
const LABEL_LAYER =
"col-start-1 row-start-1 text-left transition-opacity ease-out motion-reduce:transition-none";
 
// Bookmark save — raised key; the icon fills amber and the label fades over.
export const BookmarkSaveButton = forwardRef<
HTMLButtonElement,
BookmarkSaveButtonProps
>(
(
{
className,
label = "Save",
savedLabel = "Saved",
defaultSaved = false,
onClick,
...props
},
ref,
) => {
const [saved, setSaved] = useState(defaultSaved);
 
return (
<button
ref={ref}
type="button"
aria-pressed={saved}
data-slot="bookmark-save-button"
onClick={(event) => {
setSaved((prev) => !prev);
onClick?.(event);
}}
className={cn(
"inline-flex h-10 cursor-pointer items-center gap-2 rounded-lg px-3.5 font-sans text-sm font-medium outline-none select-none",
"transition-[background-color,box-shadow,color] duration-200 ease-[cubic-bezier(0.32,0.72,0,1)] motion-reduce:transition-none",
"focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-neutral-900",
// Soft blurred top highlight (not a hard white rim) + lift shadows.
"shadow-[0_0_0_1px_rgba(0,0,0,0.06),0_1px_1px_rgba(0,0,0,0.1),0_2px_4px_rgba(0,0,0,0.08),inset_0_1px_2px_rgba(255,255,255,0.4),inset_0_-2px_4px_rgba(0,0,0,0.08)]",
// Pressing sinks the key with the balanced inset recipe.
"active:shadow-[0_0_0_1px_rgba(0,0,0,0.06),0_1px_1px_rgba(0,0,0,0.06),inset_0_1px_2px_rgba(0,0,0,0.08),inset_0_2px_4px_rgba(0,0,0,0.04),inset_0_-1px_2px_rgba(0,0,0,0.05)]",
saved
? "bg-amber-50 text-amber-700 active:bg-amber-100"
: "bg-neutral-50 text-neutral-700 hover:text-neutral-900 active:bg-neutral-100",
className,
)}
{...props}
>
<Bookmark
size={16}
strokeWidth={2}
aria-hidden
className={cn(
"shrink-0 transition-[fill,color,transform,filter] duration-300 ease-[cubic-bezier(0.34,1.56,0.64,1)] motion-reduce:transition-none",
"filter-[drop-shadow(0_1px_1px_rgba(0,0,0,0.22))_drop-shadow(0_2px_3px_rgba(0,0,0,0.12))]",
saved
? "scale-110 fill-amber-500 text-amber-500 filter-[drop-shadow(0_1px_1px_rgba(245,158,11,0.35))_drop-shadow(0_2px_4px_rgba(245,158,11,0.2))]"
: "scale-100 fill-transparent text-neutral-500",
)}
/>
 
<span className="grid">
<span
aria-hidden={saved}
className={cn(
LABEL_LAYER,
saved ? "opacity-0 duration-200" : "opacity-100 duration-300 delay-200",
)}
>
{label}
</span>
<span
aria-hidden={!saved}
className={cn(
LABEL_LAYER,
saved ? "opacity-100 duration-300 delay-200" : "opacity-0 duration-200",
)}
>
{savedLabel}
</span>
</span>
</button>
);
},
);
 
BookmarkSaveButton.displayName = "BookmarkSaveButton";
PreviousNext

On this

page

Jump to a section on this page.

  • lib/cn.ts
  • components/buttons/bookmark-save-button.tsx

Sponsor spot · demo preview

Logo

Your brand name

Your tagline or category

A short pitch about your product or service goes here. This is a preview of how sponsor cards will look in this sidebar.

Your call to action

This slot is available. Sponsor Opensource UI and reach developers browsing components every day.