mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
10 lines
309 B
TypeScript
10 lines
309 B
TypeScript
|
declare namespace React {
|
||
|
/* eslint-disable-next-line import/no-extraneous-dependencies */
|
||
|
import * as CSS from 'csstype';
|
||
|
|
||
|
// Add custom CSS properties so that they can be used in `style` props
|
||
|
export interface CSSProperties extends CSS.Properties<string | number> {
|
||
|
'--progress'?: string;
|
||
|
}
|
||
|
}
|