mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 12:30:12 +02:00
e26ffaac53
* Add additional information to album * add mbz release types and normalization * update Pill styling --------- Co-authored-by: jeffvli <jeffvictorli@gmail.com>
10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
import { PillVariant } from '@mantine/core';
|
|
|
|
type ExtendedPillVariant = 'outline' | PillVariant;
|
|
|
|
declare module '@mantine/core' {
|
|
export interface PillProps {
|
|
variant?: ExtendedPillVariant;
|
|
}
|
|
}
|