@myinterview/component-library
Advanced tools
Comparing version 1.0.38 to 1.0.39
import React from 'react'; | ||
import { IBackgroundColors, IColors } from '../../interfaces/variables'; | ||
import './checkbox.scss'; | ||
export interface ICheckbox extends React.HTMLAttributes<HTMLInputElement> { | ||
value: boolean; | ||
export interface ICheckbox extends React.HTMLAttributes<HTMLDivElement> { | ||
color?: IColors; | ||
backgroundColor?: IBackgroundColors; | ||
borderColor?: IColors; | ||
size?: number | string; | ||
onToggle: (value: boolean) => void; | ||
inputAttributs?: React.InputHTMLAttributes<HTMLInputElement>; | ||
checked?: boolean; | ||
size?: string | number; | ||
} | ||
export declare const Checkbox: React.FC<ICheckbox>; |
{ | ||
"name": "@myinterview/component-library", | ||
"version": "1.0.38", | ||
"version": "1.0.39", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "type": "module", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
441720
2044