mirror of
https://github.com/zadam/trilium.git
synced 2025-11-06 13:26:01 +01:00
feat(website): outline for donation buttons
This commit is contained in:
@@ -8,12 +8,13 @@ interface ButtonProps {
|
||||
text: ComponentChildren;
|
||||
openExternally?: boolean;
|
||||
className?: string;
|
||||
outline?: boolean;
|
||||
}
|
||||
|
||||
export default function Button({ href, iconSvg, openExternally, text, className }: ButtonProps) {
|
||||
export default function Button({ href, iconSvg, openExternally, text, className, outline }: ButtonProps) {
|
||||
return (
|
||||
<a
|
||||
className={`button ${className}`}
|
||||
className={`button ${className} ${outline ? "outline" : ""}`}
|
||||
href={href}
|
||||
target={openExternally ? "_blank" : undefined}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user