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