@ugurdemirel/landcraft 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,181 @@
1
+ import { forwardRef, type HTMLAttributes, type ReactNode } from "react";
2
+ import { cn } from "../utils/cn";
3
+ import { ArrowUp, ArrowDown } from "../icons";
4
+
5
+ export interface Stat {
6
+ value: string;
7
+ label: string;
8
+ /** Small unit rendered inline with the value, e.g. "ms" or "₺". */
9
+ suffix?: string;
10
+ /** Trend change in percent — renders an up/down badge. */
11
+ delta?: number;
12
+ /** Optional supporting copy. */
13
+ sub?: string;
14
+ icon?: ReactNode;
15
+ /** Highlights the value with the primary token. */
16
+ accent?: boolean;
17
+ }
18
+
19
+ export interface StatsProps extends HTMLAttributes<HTMLDListElement> {
20
+ stats: Stat[];
21
+ option?: "editorial" | "hairline" | "cells" | "ticker";
22
+ columns?: 2 | 3 | 4;
23
+ }
24
+
25
+ const valueBase =
26
+ "font-display font-semibold tabular-nums tracking-[-0.02em] text-foreground";
27
+
28
+ const suffixBase = "ml-1 font-sans text-sm font-normal tracking-normal text-muted-foreground";
29
+
30
+ const gridCols: Record<NonNullable<StatsProps["columns"]>, string> = {
31
+ 2: "sm:grid-cols-2",
32
+ 3: "sm:grid-cols-2 lg:grid-cols-3",
33
+ 4: "sm:grid-cols-2 lg:grid-cols-4",
34
+ };
35
+
36
+ function DeltaBadge({ delta }: { delta: number }) {
37
+ const isUp = delta >= 0;
38
+ const Icon = isUp ? ArrowUp : ArrowDown;
39
+ return (
40
+ <span
41
+ className={cn(
42
+ "inline-flex items-center gap-1 rounded-full px-2 py-0.5 text-xs font-semibold tabular-nums",
43
+ isUp ? "bg-accent/10 text-accent" : "bg-danger-soft text-danger",
44
+ )}
45
+ >
46
+ <Icon className="h-3 w-3" />
47
+ {Math.abs(delta)}%
48
+ </span>
49
+ );
50
+ }
51
+
52
+ export const Stats = forwardRef<HTMLDListElement, StatsProps>(
53
+ ({ className, stats, option = "editorial", columns = 4, ...props }, ref) => {
54
+ if (option === "ticker") {
55
+ return (
56
+ <dl
57
+ ref={ref}
58
+ className={cn(
59
+ "flex w-full items-stretch overflow-x-auto rounded-2xl border border-border bg-surface",
60
+ className,
61
+ )}
62
+ {...props}
63
+ >
64
+ {stats.map((stat, i) => (
65
+ <div
66
+ key={stat.label}
67
+ className={cn(
68
+ "flex min-w-[11rem] flex-1 flex-col gap-3 p-6",
69
+ i > 0 && "border-l border-border",
70
+ )}
71
+ >
72
+ <div className="flex items-center justify-between gap-3">
73
+ <dt className="text-xs font-semibold uppercase tracking-[0.14em] text-muted-foreground">
74
+ {stat.label}
75
+ </dt>
76
+ {typeof stat.delta === "number" ? <DeltaBadge delta={stat.delta} /> : null}
77
+ </div>
78
+ <dd className={cn(valueBase, "text-3xl", stat.accent ? "text-primary" : undefined)}>
79
+ {stat.value}
80
+ {stat.suffix ? <span className={suffixBase}>{stat.suffix}</span> : null}
81
+ </dd>
82
+ {stat.sub ? (
83
+ <p className="text-[13px] leading-5 text-muted-foreground">{stat.sub}</p>
84
+ ) : null}
85
+ </div>
86
+ ))}
87
+ </dl>
88
+ );
89
+ }
90
+
91
+ if (option === "cells") {
92
+ return (
93
+ <dl
94
+ ref={ref}
95
+ className={cn("grid grid-cols-1 gap-4", gridCols[columns], className)}
96
+ {...props}
97
+ >
98
+ {stats.map((stat) => (
99
+ <div
100
+ key={stat.label}
101
+ className="flex min-h-[8.5rem] flex-col justify-between rounded-xl border border-border bg-surface p-6"
102
+ >
103
+ <dd className={cn(valueBase, "text-3xl", stat.accent ? "text-primary" : undefined)}>
104
+ {stat.value}
105
+ {stat.suffix ? <span className={suffixBase}>{stat.suffix}</span> : null}
106
+ </dd>
107
+ <div className="mt-5 flex items-center justify-between gap-3">
108
+ <dt className="text-sm text-muted-foreground">{stat.label}</dt>
109
+ {stat.icon ? (
110
+ <span className="text-foreground/30">{stat.icon}</span>
111
+ ) : null}
112
+ </div>
113
+ </div>
114
+ ))}
115
+ </dl>
116
+ );
117
+ }
118
+
119
+ if (option === "hairline") {
120
+ return (
121
+ <dl
122
+ ref={ref}
123
+ className={cn("grid grid-cols-1 gap-y-10", gridCols[columns], className)}
124
+ {...props}
125
+ >
126
+ {stats.map((stat, i) => (
127
+ <div
128
+ key={stat.label}
129
+ className={cn(
130
+ "text-center",
131
+ columns > 1 && i > 0 && "sm:border-l sm:border-border",
132
+ )}
133
+ >
134
+ <dd className={cn(valueBase, "text-5xl", stat.accent ? "text-primary" : undefined)}>
135
+ {stat.value}
136
+ {stat.suffix ? <span className={suffixBase}>{stat.suffix}</span> : null}
137
+ </dd>
138
+ <dt className="mt-3 text-xs font-semibold uppercase tracking-[0.16em] text-muted-foreground">
139
+ {stat.label}
140
+ </dt>
141
+ </div>
142
+ ))}
143
+ </dl>
144
+ );
145
+ }
146
+
147
+ // editorial — label above, oversized number, hairline rule under.
148
+ return (
149
+ <dl
150
+ ref={ref}
151
+ className={cn("grid grid-cols-1 gap-x-10 gap-y-12", gridCols[columns], className)}
152
+ {...props}
153
+ >
154
+ {stats.map((stat) => (
155
+ <div key={stat.label} className="border-t border-border pt-6">
156
+ <div className="flex items-center justify-between gap-3">
157
+ <dt className="text-xs font-semibold uppercase tracking-[0.18em] text-muted-foreground">
158
+ {stat.label}
159
+ </dt>
160
+ {typeof stat.delta === "number" ? <DeltaBadge delta={stat.delta} /> : null}
161
+ </div>
162
+ <dd
163
+ className={cn(
164
+ valueBase,
165
+ "mt-4 text-5xl sm:text-6xl",
166
+ stat.accent ? "text-primary" : undefined,
167
+ )}
168
+ >
169
+ {stat.value}
170
+ {stat.suffix ? <span className={suffixBase}>{stat.suffix}</span> : null}
171
+ </dd>
172
+ {stat.sub ? (
173
+ <p className="mt-3 max-w-xs text-[13px] leading-5 text-muted-foreground">{stat.sub}</p>
174
+ ) : null}
175
+ </div>
176
+ ))}
177
+ </dl>
178
+ );
179
+ },
180
+ );
181
+ Stats.displayName = "Stats";
@@ -0,0 +1,205 @@
1
+ import { forwardRef, useState, type HTMLAttributes, type ReactNode } from "react";
2
+ import { cn } from "../utils/cn";
3
+ import { getContrastText } from "../utils/contrast";
4
+ import { ChevronLeft, ChevronRight, Quote, Star } from "../icons";
5
+
6
+ export interface Testimonial {
7
+ quote: string;
8
+ author: string;
9
+ role?: string;
10
+ company?: string;
11
+ avatar?: ReactNode;
12
+ /** Arbitrary CSS color for the initials avatar. */
13
+ accent?: string;
14
+ rating?: number;
15
+ }
16
+
17
+ export interface TestimonialCardProps extends HTMLAttributes<HTMLElement> {
18
+ testimonial: Testimonial;
19
+ }
20
+
21
+ const initials = (name: string) =>
22
+ name
23
+ .split(" ")
24
+ .map((p) => p[0])
25
+ .join("")
26
+ .slice(0, 2)
27
+ .toUpperCase();
28
+
29
+ export const TestimonialCard = forwardRef<HTMLElement, TestimonialCardProps>(
30
+ function TestimonialCard({ className, testimonial, ...props }, ref) {
31
+ const { quote, author, role, company, avatar, accent, rating } = testimonial;
32
+ const badgeStyle = accent
33
+ ? { backgroundColor: accent, color: getContrastText(accent, "#111111", "#ffffff") }
34
+ : undefined;
35
+
36
+ return (
37
+ <figure
38
+ ref={ref}
39
+ className={cn(
40
+ "mb-4 flex flex-col break-inside-avoid rounded-2xl border border-border bg-surface p-7",
41
+ className,
42
+ )}
43
+ {...props}
44
+ >
45
+ <div className="mb-5 flex items-center justify-between">
46
+ <Quote className={cn("h-6 w-6", accent ? undefined : "text-primary/30")} style={accent ? { color: accent } : undefined} />
47
+ {rating ? (
48
+ <span className="flex items-center gap-0.5 text-amber-500" aria-label={`${rating} / 5`}>
49
+ {Array.from({ length: 5 }).map((_, i) => (
50
+ <Star key={i} className="h-3.5 w-3.5" />
51
+ ))}
52
+ </span>
53
+ ) : null}
54
+ </div>
55
+ <blockquote className="flex-1 text-[15px] leading-7 text-foreground/85">{quote}</blockquote>
56
+ <figcaption className="mt-6 flex items-center gap-3">
57
+ {avatar ? (
58
+ avatar
59
+ ) : (
60
+ <span
61
+ style={badgeStyle}
62
+ className={cn(
63
+ "inline-flex h-10 w-10 shrink-0 items-center justify-center rounded-full text-xs font-bold",
64
+ !accent && "bg-primary-soft text-primary",
65
+ )}
66
+ >
67
+ {initials(author)}
68
+ </span>
69
+ )}
70
+ <div>
71
+ <div className="text-sm font-semibold text-foreground">{author}</div>
72
+ {(role || company) && (
73
+ <div className="text-xs text-muted-foreground">
74
+ {[role, company].filter(Boolean).join(" · ")}
75
+ </div>
76
+ )}
77
+ </div>
78
+ </figcaption>
79
+ </figure>
80
+ );
81
+ },
82
+ );
83
+
84
+ /** Holds per-option rendering + controls together. */
85
+ export interface TestimonialsProps extends HTMLAttributes<HTMLDivElement> {
86
+ items: Testimonial[];
87
+ option?: "grid" | "carousel" | "marquee";
88
+ title?: string;
89
+ }
90
+
91
+ export const Testimonials = ({ className, items, option = "grid", ...props }: TestimonialsProps) => {
92
+ if (option === "carousel") {
93
+ return <Carousel items={items} className={className} {...props} />;
94
+ }
95
+
96
+ if (option === "marquee") {
97
+ const doubled = [...items, ...items];
98
+ return (
99
+ <div className={cn("w-full overflow-hidden", className)} {...props}>
100
+ <div className="mask-fade-x">
101
+ <div className="flex w-max animate-marquee gap-4 pr-4 motion-reduce:animate-none">
102
+ {doubled.map((item, i) => (
103
+ <div key={i} className="w-[19rem] shrink-0 sm:w-[24rem]">
104
+ <TestimonialCard testimonial={item} className="m-0" />
105
+ </div>
106
+ ))}
107
+ </div>
108
+ </div>
109
+ </div>
110
+ );
111
+ }
112
+
113
+ return (
114
+ <div className={cn("columns-1 gap-4 md:columns-2 lg:columns-3", className)} {...props}>
115
+ {items.map((item, i) => (
116
+ <TestimonialCard key={i} testimonial={item} />
117
+ ))}
118
+ </div>
119
+ );
120
+ };
121
+ Testimonials.displayName = "Testimonials";
122
+
123
+ function Carousel({
124
+ items,
125
+ className,
126
+ ...props
127
+ }: HTMLAttributes<HTMLDivElement> & { items: Testimonial[] }) {
128
+ const [index, setIndex] = useState(0);
129
+ const item = items[index % items.length];
130
+ const badgeStyle = item.accent
131
+ ? { backgroundColor: item.accent, color: getContrastText(item.accent, "#111111", "#ffffff") }
132
+ : undefined;
133
+
134
+ const go = (dir: 1 | -1) => setIndex((i) => (i + dir + items.length) % items.length);
135
+
136
+ return (
137
+ <div className={cn("mx-auto w-full max-w-3xl", className)} {...props}>
138
+ <figure className="relative rounded-2xl border border-border bg-surface p-10 text-center sm:p-14">
139
+ <Quote
140
+ className={cn("mx-auto mb-6 h-8 w-8", item.accent ? undefined : "text-primary/25")}
141
+ style={item.accent ? { color: item.accent } : undefined}
142
+ aria-hidden
143
+ />
144
+ <blockquote className="font-display text-balance text-xl font-medium leading-relaxed tracking-tight text-foreground sm:text-2xl">
145
+ {item.quote}
146
+ </blockquote>
147
+ <figcaption className="mt-8 flex items-center justify-center gap-3">
148
+ {item.avatar ? (
149
+ item.avatar
150
+ ) : (
151
+ <span
152
+ style={badgeStyle}
153
+ className={cn(
154
+ "inline-flex h-11 w-11 items-center justify-center rounded-full text-xs font-bold",
155
+ !item.accent && "bg-foreground text-background",
156
+ )}
157
+ >
158
+ {initials(item.author)}
159
+ </span>
160
+ )}
161
+ <div className="text-left">
162
+ <div className="text-sm font-semibold text-foreground">{item.author}</div>
163
+ <div className="text-xs text-muted-foreground">
164
+ {[item.role, item.company].filter(Boolean).join(" · ")}
165
+ </div>
166
+ </div>
167
+ </figcaption>
168
+ </figure>
169
+
170
+ <div className="mt-6 flex items-center justify-center gap-4">
171
+ <button
172
+ type="button"
173
+ aria-label="Previous testimonial"
174
+ onClick={() => go(-1)}
175
+ className="inline-flex h-10 w-10 cursor-pointer items-center justify-center rounded-full border border-border bg-surface text-foreground transition-colors duration-150 hover:border-foreground/25 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"
176
+ >
177
+ <ChevronLeft className="h-4 w-4" />
178
+ </button>
179
+ <div className="flex items-center gap-1.5">
180
+ {items.map((_, i) => (
181
+ <button
182
+ key={i}
183
+ type="button"
184
+ aria-label={`Testimonial ${i + 1}`}
185
+ aria-current={i === index}
186
+ onClick={() => setIndex(i)}
187
+ className={cn(
188
+ "h-1.5 cursor-pointer rounded-full transition-all duration-200",
189
+ i === index ? "w-6 bg-foreground" : "w-1.5 bg-foreground/25 hover:bg-foreground/50",
190
+ )}
191
+ />
192
+ ))}
193
+ </div>
194
+ <button
195
+ type="button"
196
+ aria-label="Next testimonial"
197
+ onClick={() => go(1)}
198
+ className="inline-flex h-10 w-10 cursor-pointer items-center justify-center rounded-full border border-border bg-surface text-foreground transition-colors duration-150 hover:border-foreground/25 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"
199
+ >
200
+ <ChevronRight className="h-4 w-4" />
201
+ </button>
202
+ </div>
203
+ </div>
204
+ );
205
+ }
package/src/icons.tsx ADDED
@@ -0,0 +1,290 @@
1
+ import type { SVGProps } from "react";
2
+
3
+ /**
4
+ * Minimal 1.5px stroke icon set (Lucide/Heroicons inspired).
5
+ * No emojis — the library ships a single, consistent icon vocabulary.
6
+ *
7
+ * Usage:
8
+ * <ArrowRight className="h-4 w-4" />
9
+ */
10
+
11
+ type IconProps = SVGProps<SVGSVGElement>;
12
+
13
+ const base: IconProps = {
14
+ xmlns: "http://www.w3.org/2000/svg",
15
+ viewBox: "0 0 24 24",
16
+ fill: "none",
17
+ stroke: "currentColor",
18
+ strokeWidth: 1.5,
19
+ strokeLinecap: "round",
20
+ strokeLinejoin: "round",
21
+ "aria-hidden": true as never,
22
+ };
23
+
24
+ export const ArrowRight = (props: IconProps) => (
25
+ <svg {...base} {...props}>
26
+ <path d="M5 12h14" />
27
+ <path d="m13 6 6 6-6 6" />
28
+ </svg>
29
+ );
30
+
31
+ export const ArrowUpRight = (props: IconProps) => (
32
+ <svg {...base} {...props}>
33
+ <path d="M7 17 17 7" />
34
+ <path d="M8 7h9v9" />
35
+ </svg>
36
+ );
37
+
38
+ export const ArrowDown = (props: IconProps) => (
39
+ <svg {...base} {...props}>
40
+ <path d="M12 5v14" />
41
+ <path d="m6 13 6 6 6-6" />
42
+ </svg>
43
+ );
44
+
45
+ export const ArrowUp = (props: IconProps) => (
46
+ <svg {...base} {...props}>
47
+ <path d="M12 19V5" />
48
+ <path d="m6 11 6-6 6 6" />
49
+ </svg>
50
+ );
51
+
52
+ export const Check = (props: IconProps) => (
53
+ <svg {...base} {...props}>
54
+ <path d="M20 6 9 17l-5-5" />
55
+ </svg>
56
+ );
57
+
58
+ export const Plus = (props: IconProps) => (
59
+ <svg {...base} {...props}>
60
+ <path d="M12 5v14" />
61
+ <path d="M5 12h14" />
62
+ </svg>
63
+ );
64
+
65
+ export const X = (props: IconProps) => (
66
+ <svg {...base} {...props}>
67
+ <path d="M18 6 6 18" />
68
+ <path d="m6 6 12 12" />
69
+ </svg>
70
+ );
71
+
72
+ export const Menu = (props: IconProps) => (
73
+ <svg {...base} {...props}>
74
+ <path d="M4 7h16" />
75
+ <path d="M4 12h16" />
76
+ <path d="M4 17h16" />
77
+ </svg>
78
+ );
79
+
80
+ export const ChevronDown = (props: IconProps) => (
81
+ <svg {...base} {...props}>
82
+ <path d="m6 9 6 6 6-6" />
83
+ </svg>
84
+ );
85
+
86
+ export const ChevronRight = (props: IconProps) => (
87
+ <svg {...base} {...props}>
88
+ <path d="m9 6 6 6-6 6" />
89
+ </svg>
90
+ );
91
+
92
+ export const ChevronLeft = (props: IconProps) => (
93
+ <svg {...base} {...props}>
94
+ <path d="m15 6-6 6 6 6" />
95
+ </svg>
96
+ );
97
+
98
+ export const Zap = (props: IconProps) => (
99
+ <svg {...base} {...props}>
100
+ <path d="M13 2 3 14h7l-1 8 10-12h-7l1-8z" />
101
+ </svg>
102
+ );
103
+
104
+ export const ShieldCheck = (props: IconProps) => (
105
+ <svg {...base} {...props}>
106
+ <path d="M12 3 5 6v5c0 4.5 3 7.5 7 9 4-1.5 7-4.5 7-9V6l-7-3z" />
107
+ <path d="m9 12 2 2 4-4" />
108
+ </svg>
109
+ );
110
+
111
+ export const Layers = (props: IconProps) => (
112
+ <svg {...base} {...props}>
113
+ <path d="m12 2 9 5-9 5-9-5 9-5z" />
114
+ <path d="m3 12 9 5 9-5" />
115
+ <path d="m3 17 9 5 9-5" />
116
+ </svg>
117
+ );
118
+
119
+ export const Smartphone = (props: IconProps) => (
120
+ <svg {...base} {...props}>
121
+ <rect width="14" height="20" x="5" y="2" rx="2.5" />
122
+ <path d="M12 18h.01" />
123
+ </svg>
124
+ );
125
+
126
+ export const Gauge = (props: IconProps) => (
127
+ <svg {...base} {...props}>
128
+ <path d="M12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16z" />
129
+ <path d="m12 14 4-4" />
130
+ <path d="M12 10.5 9 13.5" />
131
+ </svg>
132
+ );
133
+
134
+ export const BarChart = (props: IconProps) => (
135
+ <svg {...base} {...props}>
136
+ <path d="M3 20h18" />
137
+ <path d="M7 20V8" />
138
+ <path d="M12 20V4" />
139
+ <path d="M17 20v-7" />
140
+ </svg>
141
+ );
142
+
143
+ export const Users = (props: IconProps) => (
144
+ <svg {...base} {...props}>
145
+ <path d="M16 21v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2" />
146
+ <circle cx="9" cy="7" r="4" />
147
+ <path d="M22 21v-2a4 4 0 0 0-3-3.87" />
148
+ <path d="M16 3.13a4 4 0 0 1 0 7.75" />
149
+ </svg>
150
+ );
151
+
152
+ export const Star = (props: IconProps) => (
153
+ <svg viewBox="0 0 24 24" fill="currentColor" aria-hidden {...props}>
154
+ <path d="M12 2.5c.33 0 .63.19.77.5l1.98 4.01 4.42.64c.62.09.87.85.42 1.29l-3.2 3.12.76 4.4c.11.62-.55 1.1-1.1.8L12 15.13l-3.95 2.08c-.56.29-1.21-.18-1.1-.8l.76-4.4-3.2-3.12a.78.78 0 0 1 .42-1.29l4.42-.64L11.23 3c.14-.31.44-.5.77-.5z" />
155
+ </svg>
156
+ );
157
+
158
+ export const Quote = (props: IconProps) => (
159
+ <svg viewBox="0 0 24 24" fill="currentColor" aria-hidden {...props}>
160
+ <path d="M10.5 5C7 5 4.5 7.5 4.5 11c0 3.3 2.2 5.5 5.2 5.5.2 0 .4 0 .5-.1-.2 1.5-1.3 2.6-2.9 3.2a.75.75 0 1 0 .4 1.4c3.6-1 5.8-3.8 5.8-7.7V7.5C13 6.1 11.9 5 10.5 5zm9 0C16 5 13.5 7.5 13.5 11c0 3.3 2.2 5.5 5.2 5.5.2 0 .4 0 .5-.1-.2 1.5-1.3 2.6-2.9 3.2a.75.75 0 1 0 .4 1.4c3.6-1 5.8-3.8 5.8-7.7V7.5C22 6.1 20.9 5 19.5 5z" />
161
+ </svg>
162
+ );
163
+
164
+ export const Globe = (props: IconProps) => (
165
+ <svg {...base} {...props}>
166
+ <circle cx="12" cy="12" r="9" />
167
+ <path d="M3 12h18" />
168
+ <path d="M12 3a14 14 0 0 1 0 18 14 14 0 0 1 0-18z" />
169
+ </svg>
170
+ );
171
+
172
+ export const Mail = (props: IconProps) => (
173
+ <svg {...base} {...props}>
174
+ <rect width="18" height="14" x="3" y="5" rx="2" />
175
+ <path d="m3 7 9 6 9-6" />
176
+ </svg>
177
+ );
178
+
179
+ export const Lock = (props: IconProps) => (
180
+ <svg {...base} {...props}>
181
+ <rect width="18" height="11" x="3" y="11" rx="2" />
182
+ <path d="M7 11V7a5 5 0 0 1 10 0v4" />
183
+ </svg>
184
+ );
185
+
186
+ export const Clock = (props: IconProps) => (
187
+ <svg {...base} {...props}>
188
+ <circle cx="12" cy="12" r="9" />
189
+ <path d="M12 7v5l3 2" />
190
+ </svg>
191
+ );
192
+
193
+ export const DollarSign = (props: IconProps) => (
194
+ <svg {...base} {...props}>
195
+ <path d="M12 2v20" />
196
+ <path d="M17 5.5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" />
197
+ </svg>
198
+ );
199
+
200
+ export const Code = (props: IconProps) => (
201
+ <svg {...base} {...props}>
202
+ <path d="m16 18 6-6-6-6" />
203
+ <path d="m8 6-6 6 6 6" />
204
+ </svg>
205
+ );
206
+
207
+ export const Terminal = (props: IconProps) => (
208
+ <svg {...base} {...props}>
209
+ <path d="m5 17 5-5-5-5" />
210
+ <path d="M13 19h6" />
211
+ </svg>
212
+ );
213
+
214
+ export const Send = (props: IconProps) => (
215
+ <svg {...base} {...props}>
216
+ <path d="m3 11 18-8-7 18-3-7-8-3z" />
217
+ <path d="M11 14 21 3" />
218
+ </svg>
219
+ );
220
+
221
+ export const Play = (props: IconProps) => (
222
+ <svg {...base} {...props}>
223
+ <path d="m8 5 11 7-11 7V5z" />
224
+ </svg>
225
+ );
226
+
227
+ export const ExternalLink = (props: IconProps) => (
228
+ <svg {...base} {...props}>
229
+ <path d="M15 3h6v6" />
230
+ <path d="M10 14 21 3" />
231
+ <path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" />
232
+ </svg>
233
+ );
234
+
235
+ export const Sliders = (props: IconProps) => (
236
+ <svg {...base} {...props}>
237
+ <path d="M4 6h10" />
238
+ <path d="M18 6h2" />
239
+ <circle cx="16" cy="6" r="2" />
240
+ <path d="M4 12h2" />
241
+ <path d="M10 12h10" />
242
+ <circle cx="8" cy="12" r="2" />
243
+ <path d="M4 18h10" />
244
+ <path d="M18 18h2" />
245
+ <circle cx="16" cy="18" r="2" />
246
+ </svg>
247
+ );
248
+
249
+ export const Database = (props: IconProps) => (
250
+ <svg {...base} {...props}>
251
+ <ellipse cx="12" cy="5" rx="8" ry="3" />
252
+ <path d="M4 5v7c0 1.66 3.58 3 8 3s8-1.34 8-3V5" />
253
+ <path d="M4 12v7c0 1.66 3.58 3 8 3s8-1.34 8-3v-7" />
254
+ </svg>
255
+ );
256
+
257
+ export const Box = (props: IconProps) => (
258
+ <svg {...base} {...props}>
259
+ <path d="M21 8 12 3 3 8v8l9 5 9-5V8z" />
260
+ <path d="m3 8 9 5 9-5" />
261
+ <path d="M12 13v8" />
262
+ </svg>
263
+ );
264
+
265
+ export const Cpu = (props: IconProps) => (
266
+ <svg {...base} {...props}>
267
+ <rect width="16" height="16" x="4" y="4" rx="2" />
268
+ <rect width="8" height="8" x="8" y="8" rx="1" />
269
+ <path d="M9 2v2M15 2v2M9 20v2M15 20v2M2 9h2M2 15h2M20 9h2M20 15h2" />
270
+ </svg>
271
+ );
272
+
273
+ export const Palette = (props: IconProps) => (
274
+ <svg {...base} {...props}>
275
+ <path d="M12 3a9 9 0 1 0 0 18c1.66 0 2-1.34 2-2 0-.66-.27-1.16-.58-1.66-.3-.48-.42-.84-.42-1.34 0-.83.67-1.5 1.5-1.5h3.2A4.3 4.3 0 0 0 21 10 9 9 0 0 0 12 3z" />
276
+ <circle cx="7.5" cy="10.5" r="0.8" fill="currentColor" stroke="none" />
277
+ <circle cx="12" cy="7.5" r="0.8" fill="currentColor" stroke="none" />
278
+ <circle cx="16.5" cy="10.5" r="0.8" fill="currentColor" stroke="none" />
279
+ </svg>
280
+ );
281
+
282
+ export const Rocket = (props: IconProps) => (
283
+ <svg {...base} {...props}>
284
+ <path d="M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z" />
285
+ <path d="m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z" />
286
+ <path d="M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0" />
287
+ <path d="M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5" />
288
+ <circle cx="15.5" cy="8.5" r="1.5" fill="currentColor" stroke="none" />
289
+ </svg>
290
+ );