fix(button): add style prop

This commit is contained in:
AAGaming
2022-09-09 16:15:51 -04:00
parent 160fbb493f
commit d6a08feca0

View File

@@ -1,8 +1,9 @@
import { FC } from 'react';
import { CSSProperties, FC } from 'react';
import { CommonUIModule } from '../webpack';
export interface ButtonProps {
style: CSSProperties;
className?: string;
noFocusRing?: boolean;
disabled?: boolean;