diff --git a/src/lib/index.tsx b/src/lib/index.tsx index 86ed0ad5..f3aa238f 100644 --- a/src/lib/index.tsx +++ b/src/lib/index.tsx @@ -1,5 +1,5 @@ import React, { createContext } from 'react'; -import { StyleProp, TextStyle, ViewStyle } from 'react-native'; +import type { StyleProp, TextStyle, ViewStyle } from 'react-native'; export type IconWeight = | 'thin' @@ -11,15 +11,15 @@ export type IconWeight = export interface IconProps { color?: string; + duotoneColor?: string; + duotoneOpacity?: number; + mirrored?: boolean; size?: string | number; - weight?: IconWeight; style?: StyleProp; - mirrored?: boolean; testID?: string; - duotoneColor?: string; - duotoneOpacity?: number; title?: string; // SVGRProps titleId?: string; // SVGRProps + weight?: IconWeight; } export type Icon = React.FC;