Trigger library search on artist/author click (#939)

* add search func

* Fix lint issues and clean up

---------

Co-authored-by: schroda <50052685+schroda@users.noreply.github.com>
This commit is contained in:
Well404
2025-05-18 01:04:16 +08:00
committed by GitHub
parent 05dc05a043
commit caad353bfa
8 changed files with 57 additions and 8 deletions

View File

@@ -8,6 +8,7 @@
import Stack, { StackProps } from '@mui/material/Stack';
import Typography, { TypographyProps } from '@mui/material/Typography';
import { ReactNode } from 'react';
export const Metadata = ({
title,
@@ -17,7 +18,7 @@ export const Metadata = ({
valueProps,
}: {
title: string;
value: string;
value: ReactNode;
stackProps?: StackProps;
titleProps?: TypographyProps;
valueProps?: TypographyProps;