Add continual improvement registries

Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Sacha Al Himdani
2025-08-26 15:44:09 +02:00
parent 98145ef08d
commit bb68af1d3c
37 changed files with 7696 additions and 64 deletions

View File

@@ -0,0 +1,10 @@
import type {IconProps} from "./type.ts";
// Source: Lucide Icons "rotate-cw" - https://lucide.dev/icons/rotate-cw
// Licensed under ISC License
export function IconRotateCw({size = 24, className}: IconProps) {
return <svg width={size} height={size} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className={className} xmlns="http://www.w3.org/2000/svg">
<path d="M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8"/>
<path d="M21 3v5h-5"/>
</svg>
}

View File

@@ -78,3 +78,4 @@ export { IconChevronUp } from "./IconChevronUp.tsx";
export { IconBlock } from "./IconBlock.tsx";
export { IconChevronDown } from "./IconChevronDown.tsx";
export { IconPageCross } from "./IconPageCross.tsx";
export { IconRotateCw } from "./IconRotateCw.tsx";

View File

@@ -17,7 +17,7 @@ export function Sidebar({ children }: PropsWithChildren) {
<aside
className={clsx(
"border-r border-border-solid relative pt-16 flex-none",
open ? "px-4 w-[270px]" : "px-2",
open ? "px-4 w-[330px]" : "px-2",
)}
>
{children}