You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
394 B
10 lines
394 B
import * as React from 'react';
|
|
import { ScreenSizeMap } from '../_util/responsiveObserve';
|
|
export declare type AvatarSize = 'large' | 'small' | 'default' | number | ScreenSizeMap;
|
|
declare const SizeContext: React.Context<AvatarSize>;
|
|
export interface SizeContextProps {
|
|
size?: AvatarSize;
|
|
}
|
|
export declare const SizeContextProvider: React.FC<SizeContextProps>;
|
|
export default SizeContext;
|