@metamask/design-system-react-native
Version:
14 lines • 548 B
text/typescript
import type { ButtonVariant } from "../../types/index.cjs";
import type { ButtonPrimaryProps } from "./variants/ButtonPrimary/index.cjs";
import type { ButtonSecondaryProps } from "./variants/ButtonSecondary/index.cjs";
import type { ButtonTertiaryProps } from "./variants/ButtonTertiary/index.cjs";
/**
* Button component props.
*/
export type ButtonProps = (ButtonTertiaryProps | ButtonPrimaryProps | ButtonSecondaryProps) & {
/**
* Variant of Button.
*/
variant?: ButtonVariant;
};
//# sourceMappingURL=Button.types.d.cts.map