@patreon/studio
Version:
Patreon Studio Design System
18 lines (17 loc) • 543 B
TypeScript
export declare type TextLinkDecoration = 'default' | 'none';
interface ClassNameForTextLinkStyleProps {
/**
* FLag to indicate if the text link is active
*/
isActive?: boolean;
/**
* Decoration style of the text
*/
decoration?: TextLinkDecoration;
/**
* Flag to indicate if icons should be forced to use parent color
*/
hasIconColor?: boolean;
}
export declare function classNameForTextLinkStyle({ isActive, decoration, hasIconColor, }: ClassNameForTextLinkStyleProps): string;
export {};