baseui
Version:
A React Component library implementing the Base design language
10 lines (9 loc) • 391 B
TypeScript
import type { Theme } from '../styles/types';
import type { StyledComponentArgs } from './types';
import type { StyleObject } from 'styletron-standard';
export declare function getSvgStyles({ $theme, $size, $color, }: {
$theme: Theme;
$size?: any;
$color?: any;
}): StyleObject;
export declare const Svg: import("styletron-react").StyletronComponent<"svg", StyledComponentArgs>;