@rapido/components
Version:
Library of common primitive components used in Rapido apps.
20 lines (19 loc) • 702 B
TypeScript
/**
* Copyright (c) 2019-present Verum Technologies
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
export declare const base: ({ __style, theme }: {
__style?: object | undefined;
theme: object;
}) => import("@styled-system/css").CSSObject;
export declare const stylex: ({ stylex, theme }: {
stylex?: object | undefined;
theme: object;
}) => import("@styled-system/css").CSSObject;
export declare const variant: (themexDefault?: string) => ({ theme, variant, themex, }: {
theme: object;
variant?: string | string[] | undefined;
themex?: any;
}) => import("@styled-system/css").CSSObject;