You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
445 B
5 lines
445 B
import { Interpolation, StyledObject, StyleFunction, Styles } from '../types';
|
|
export default function css<Props>(styles: Styles<Props>, ...interpolations: Interpolation<Props>[]): string | number | false | import("../types").Keyframes | import("../types").IStyledComponent<"web", any, any> | TemplateStringsArray | StyledObject<Props> | StyleFunction<Props> | (Interpolation<Props>[] & {
|
|
isCss?: boolean | undefined;
|
|
}) | null | undefined;
|