ADDED: A few types for convenience

FIXED: Fixed generic types, where used type "any"
This commit is contained in:
2024-02-01 16:23:29 +04:00
parent 26584d5482
commit dc4b8baaf8
13 changed files with 82 additions and 37 deletions

View File

@@ -0,0 +1,8 @@
import { InputHTMLAttributes } from 'react';
import { IRippleProps } from '../ripple/ripple.types';
export interface RadioProps
extends InputHTMLAttributes<HTMLInputElement>,
IRippleProps {
centralRipple?: boolean;
}