@compiled/react
Version:
A familiar and performant compile time CSS-in-JS library for React.
12 lines (11 loc) • 326 B
TypeScript
/// <reference types="react" />
import type { StyleSheetOpts } from './types';
interface StyleProps extends StyleSheetOpts {
/**
* CSS Rules.
* Ensure each rule is a separate element in the array.
*/
children: string[];
}
export default function Style(props: StyleProps): JSX.Element | null;
export {};