feishin/src/types/mantine.d.ts
Kendall Garner e26ffaac53
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>
2025-11-03 00:34:42 -08:00

9 lines
212 B
TypeScript

import { PillVariant } from '@mantine/core';
type ExtendedPillVariant = 'outline' | PillVariant;
declare module '@mantine/core' {
export interface PillProps {
variant?: ExtendedPillVariant;
}
}