FIXED: Interfaces

This commit is contained in:
2024-02-01 22:24:37 +04:00
parent ab4ae37015
commit 218b8f61d6
20 changed files with 163 additions and 137 deletions

View File

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