mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
23 lines
565 B
TypeScript
23 lines
565 B
TypeScript
import clsx from "clsx";
|
|
import React from "react";
|
|
import { TerminalIcon } from "./icons/terminal";
|
|
|
|
export const SwizzleBadge = () => {
|
|
return (
|
|
<div
|
|
className={clsx(
|
|
"text-xs",
|
|
"font-mono",
|
|
"text-gray-0",
|
|
"bg-refine-indigo",
|
|
"py-2 pl-2 pr-4",
|
|
"rounded-[32px]",
|
|
"flex gap-2 items-center",
|
|
)}
|
|
>
|
|
<TerminalIcon className="w-4 h-4" />
|
|
<span>Swizzle Ready</span>
|
|
</div>
|
|
);
|
|
};
|