Appearance
Home > @plaidev/karte-action-sdk > ButtonOutlinedProps
ButtonOutlinedProps type #
Signature:
typescript
type ButtonOutlinedProps = CommonProps & ClickableProps & ShadowProps & WithIconProps & LinkProps & BorderProps & {
label?: string;
// size
size?: keyof typeof BUTTON_SIZE;
height?: Properties["height"];
paddingLeft?: Properties["paddingLeft"];
paddingRight?: Properties["paddingRight"];
fontSize?: Properties["fontSize"];
// theme
theme?: keyof typeof BUTTON_THEME;
color?: Properties["color"];
backgroundColor?: Properties["backgroundColor"];
borderColor?: Properties["backgroundColor"];
// others
width?: Properties["width"];
round?: keyof typeof BUTTON_ROUND;
fontWeight?: Properties["fontWeight"];
wrap?: "wrap" | "nowrap";
};
References: CommonProps, ClickableProps, ShadowProps, WithIconProps, LinkProps, BorderProps, BUTTON_SIZE, BUTTON_THEME, BUTTON_ROUND