Add continual improvement registries
Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
10
packages/ui/src/Atoms/Icons/IconRotateCw.tsx
Normal file
10
packages/ui/src/Atoms/Icons/IconRotateCw.tsx
Normal 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>
|
||||
}
|
||||
@@ -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";
|
||||
|
||||
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user