@payfit/unity-components
Version:
27 lines (26 loc) • 871 B
TypeScript
export type PayFitBrandProps = {
/**
* The color variant of the brand. It is "original" by default.
*/
color?: 'original' | 'dark' | 'light';
/**
* The text label for the brand. Defaults to "PayFit Logo".
*/
label?: string;
/**
* The description for the brand for screen readers. Optional.
*/
description?: string;
/**
* The width of the brand. Defaults to the minimum of `104px`.
*/
width?: number;
/**
* Whether to display only the monogram or the full brand. Defaults to `false`.
*/
showOnlyMonogram?: boolean;
};
/**
* The PayFitBrand component represents the PayFit logo with several properties that follow our brand guidelines.
*/
export declare const PayFitBrand: import('react').ForwardRefExoticComponent<PayFitBrandProps & import('react').RefAttributes<SVGSVGElement>>;