@kietpt2003/react-native-core-ui
Version:
React Native Core UI components by KietPT
10 lines • 433 B
TypeScript
import React from 'react';
import { SvgIconProps } from './types/SvgIconTypes';
/**
* The SvgIcon component provide a variety of custom icon
* that based on react-native-svg package. This not the best
* choice, but it's can be perfect for specific cases.
*/
declare const SvgIcon: ({ name, size, color, strokeWidth, fill, style, }: SvgIconProps) => React.JSX.Element;
export default SvgIcon;
//# sourceMappingURL=SvgIcon.d.ts.map