mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 02:43:33 +00:00
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;
|
||
|
|
}
|
||
|
|
}
|