UNPKG

stylis-px2rem-plugin

Version:

A Stylis 4.x plugin that translates pixel units to rem units.

10 lines (8 loc) 275 B
import { Middleware } from 'stylis'; export declare type Px2RemPluginOptions = { remSize?: number; allowList?: string[]; blockList?: string[]; }; declare const stylisPx2RemPlugin: (options?: Px2RemPluginOptions) => Middleware; export default stylisPx2RemPlugin;