UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

6 lines (5 loc) 342 B
import React from 'react'; import { InlineStylesInput } from './styles-to-string/styles-to-string'; export interface InlineStylesProps extends InlineStylesInput, Omit<React.ComponentPropsWithoutRef<'style'>, keyof InlineStylesInput> { } export declare function InlineStyles({ selector, styles, media }: InlineStylesInput): React.JSX.Element;