mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-14 20:40:21 +02:00
Add additional information to album: record label, release type, version (#1242)
* Add additional information to album * add mbz release types and normalization * update Pill styling --------- Co-authored-by: jeffvli <jeffvictorli@gmail.com>
This commit is contained in:
@@ -3,7 +3,9 @@ import clsx from 'clsx';
|
||||
|
||||
import styles from './pill.module.css';
|
||||
|
||||
export const Pill = ({ children, size = 'md', ...props }: MantinePillProps) => {
|
||||
interface PillProps extends MantinePillProps {}
|
||||
|
||||
export const Pill = ({ children, classNames, radius = 'md', size = 'md', ...props }: PillProps) => {
|
||||
return (
|
||||
<MantinePill
|
||||
classNames={{
|
||||
@@ -17,8 +19,10 @@ export const Pill = ({ children, size = 'md', ...props }: MantinePillProps) => {
|
||||
}),
|
||||
remove: styles.remove,
|
||||
root: styles.root,
|
||||
...classNames,
|
||||
}}
|
||||
size="md"
|
||||
radius={radius}
|
||||
size={size}
|
||||
{...props}
|
||||
>
|
||||
{children}
|
||||
|
||||
Reference in New Issue
Block a user