This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
people/src/frontend/apps/desk/src/components/Link.tsx
Anthony LC 01d72466a6 (app-desk) add footer
Add footer to the desk app.
2024-06-26 17:26:41 +02:00

17 lines
325 B
TypeScript

import Link from 'next/link';
import styled from 'styled-components';
export interface LinkProps {
$css?: string;
}
export const StyledLink = styled(Link)<LinkProps>`
text-decoration: none;
color: #ffffff33;
&[aria-current='page'] {
color: #ffffff;
}
display: flex;
${({ $css }) => $css && `${$css};`}
`;