@janiscommerce/ui-native
Version:
components library for Janis app
12 lines (11 loc) • 460 B
TypeScript
import type { SvgProps } from 'react-native-svg';
import { ViewProps } from 'react-native';
export declare const svgsNames: readonly ["empty-illustration", "empty-list-illustration", "janis-logo", "janis-logo-color", "login-illustration", "no-notifications"];
export type Names = (typeof svgsNames)[number];
export interface Isvg extends SvgProps, ViewProps {
name?: Names;
width?: number;
height?: number;
size?: number;
xmlns?: string;
}