UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

9 lines (6 loc) 265 B
import React from 'react'; interface CreateStyleTagOptions extends React.HtmlHTMLAttributes<any>, Record<string, any> { id: string; } declare function createStyleTag(style: string, options: CreateStyleTagOptions): HTMLStyleElement; export { createStyleTag };