export type RButtonType = | 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'link' | 'text' | 'white' | 'light' | 'Dark' | 'black' export type RButtonSize = 'small' | 'normal' | 'medium' | 'large' export type RButtonNativeType = 'button' | 'submit' | 'reset' export type RButtonShapeType = 'round' | 'circle'