Links page.

Icons using npm package instead of svgs.

Props and types.

Signed-off-by: Martin Berg Alstad <git@martials.no>
This commit is contained in:
2024-10-06 13:27:18 +02:00
parent ebd59fe40e
commit beefabb908
27 changed files with 656 additions and 135 deletions

8
src/types/props.ts Normal file
View File

@ -0,0 +1,8 @@
export interface ComponentProps {
class?: string;
title?: string;
}
export interface LinkProps extends ComponentProps {
href: string;
}