UNPKG

styled-components

Version:

CSS for the <Component> Age. Style components your way with speed, strong typing, and flexibility.

11 lines (10 loc) 381 B
import * as stylis from 'stylis'; import { Stringifier } from '../types'; export type ICreateStylisInstance = { options?: { namespace?: string | undefined; prefix?: boolean | undefined; } | undefined; plugins?: stylis.Middleware[] | undefined; }; export default function createStylisInstance({ options, plugins, }?: ICreateStylisInstance): Stringifier;