FIXED: Interfaces
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user