refactor(ui): update shared components and add ControlGroup, SidebarContainer
This commit is contained in:
@@ -7,10 +7,26 @@ import { cn } from '$shared/shadcn/utils/shadcn-utils';
|
||||
import { Label } from '$shared/ui';
|
||||
|
||||
interface Props {
|
||||
/**
|
||||
* Section index
|
||||
*/
|
||||
index: string | number;
|
||||
/**
|
||||
* Section title
|
||||
*/
|
||||
title: string;
|
||||
/**
|
||||
* Section subtitle
|
||||
*/
|
||||
subtitle?: string;
|
||||
/**
|
||||
* Pulse animation
|
||||
* @default false
|
||||
*/
|
||||
pulse?: boolean;
|
||||
/**
|
||||
* CSS classes
|
||||
*/
|
||||
class?: string;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user