diff --git a/src/components/pages/gallery/LinkButton.tsx b/src/components/pages/gallery/LinkButton.tsx index 6316402fb..000407215 100644 --- a/src/components/pages/gallery/LinkButton.tsx +++ b/src/components/pages/gallery/LinkButton.tsx @@ -1,4 +1,5 @@ import React from 'react'; +import styled from 'styled-components'; export enum ButtonVariant { success = 'success', @@ -26,17 +27,25 @@ export function getVariantColor(variant: string) { return '#d1d1d1'; } } + +const CustomH5 = styled.h5<{ color: string }>` + color: ${(props) => props.color}; + cursor: pointer; + margin-bottom: 0; + &:hover { + text-decoration: underline; + } +`; + export default function LinkButton(props: LinkButtonProps) { return ( -
null)}> {props.children} -
+ ); }