0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Fixed undefined css class in the Link component (#18745)

no issue
This commit is contained in:
Sag 2023-10-24 13:50:31 -03:00 committed by GitHub
parent 1af8d588f9
commit 1e1821fdb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,9 +19,13 @@ const Link: React.FC<LinkProps> = ({href, color, className, children, ...props})
color = 'green';
}
let styles = (color === 'black') ? `transition text-black hover:text-black-700 ${className}` : `text-${color} hover:text-${color}-400 ${className}`;
let styles = (color === 'black') ? `transition text-black hover:text-black-700` : `text-${color} hover:text-${color}-400`;
if (className) {
styles = `${styles} ${className}`;
}
return <a className={styles} href={href} {...props}>{children}</a>;
};
export default Link;
export default Link;