feat(SW-914): add button color

This commit is contained in:
Fredrik Thorsson
2024-11-19 15:00:56 +01:00
parent 2b29a03d3c
commit ae74f88e04

View File

@@ -11,7 +11,9 @@ export default function Amenity({ name, buttonUrl }: AmenityProps) {
<div>{name}</div>
{buttonUrl && (
<Button theme="base" intent="primary" fullWidth asChild>
<Link href={buttonUrl}>{name}</Link>
<Link href={buttonUrl} color="white">
{name}
</Link>
</Button>
)}
</div>