@dyst/react
Version:
Dynamic Css-in-Js styles engine, based on Emotion for React
14 lines (13 loc) • 468 B
TypeScript
import { StyleSheet, StyleSheetConfig } from './StyleSheet';
export * from './css';
export * from './cache';
export * from './StyleSheet';
export { keyframes } from '@emotion/react';
/**
* Instantiates a new `StyleSheet` instance.
*
* @public
* @param config - Configuration object
*/
export declare function createStyleSheet<TTheme extends Record<string, any> = {}>(config?: StyleSheetConfig<TTheme>): StyleSheet<TTheme>;
export default StyleSheet;