UNPKG

@danilandreev/material-docs

Version:

material-docs - react framework for easy creating documentation site in material design style.

23 lines (22 loc) 484 B
/* * Author: Andrieiev Danil | danssg08@gmail.com | https://github.com/DanilAndreev * Copyright (C) 2020. */ /// <reference types="react" /> export default interface Stylable { /** * style - styles of the element. * @type object */ style?: any; /** * className - css class of the element. * @type string */ className?: string; /** * classes - classes, applied to the element. * @type object */ classes?: any; }