UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

6 lines (5 loc) 352 B
import { InlineStylesInput } from './styles-to-string/styles-to-string'; export interface InlineStylesProps extends InlineStylesInput, Omit<React.ComponentProps<'style'>, keyof InlineStylesInput> { deduplicate?: boolean; } export declare function InlineStyles({ deduplicate, ...props }: InlineStylesProps): import("react/jsx-runtime").JSX.Element;