UNPKG

@fluent-windows/core

Version:

React components that inspired by Microsoft's Fluent Design System.

17 lines (16 loc) 380 B
import { Style } from 'jss'; interface ElementType { button?: Style; iconButton?: Style; input?: Style; inputWithLabel?: Style; inputLabel?: Style; inputLabelFocus?: Style; } export interface Sizes { small?: ElementType; medium?: ElementType; large?: ElementType; } declare function createSize(sizes?: Sizes): Sizes; export default createSize;