mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
parent
1af8d588f9
commit
1e1821fdb3
1 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue