@jigoooo/shared-ui
Version:
A reusable React component library and design system with TypeScript support, built on Vite for seamless integration and optimized performance.
13 lines (12 loc) • 583 B
TypeScript
import { CSSProperties } from 'react';
export declare const getCheckboxStyle: ({ checkboxStyle, checkboxSize, disabled, checked, checkboxCheckedColor, checkboxColor, checkboxBorderWidth, }: {
checkboxStyle?: CSSProperties;
checkboxSize?: string | number;
disabled?: boolean;
checked: boolean;
checkboxCheckedColor?: string;
checkboxColor?: string;
checkboxBorderWidth: number;
}) => CSSProperties;
export declare const checkboxIconWrapperStyle: CSSProperties;
export declare const getCheckboxPartialStyle: (checkboxCheckedColor: string) => CSSProperties;