@fruits-chain/react-native-xiaoshu
Version:
🌈 React Native UI library
28 lines (27 loc) • 704 B
JavaScript
;
import { ArrowDownOutline, ArrowLeftOutline, ArrowRightOutline, ArrowUpOutline, ArrowDownFill, ArrowUpFill, ArrowLeftFill, ArrowRightFill } from '@fruits-chain/icons-react-native';
export const getArrowOutline = x => {
switch (x) {
case 'down':
return ArrowDownOutline;
case 'up':
return ArrowUpOutline;
case 'left':
return ArrowLeftOutline;
default:
return ArrowRightOutline;
}
};
export const getArrowFill = x => {
switch (x) {
case 'down':
return ArrowDownFill;
case 'up':
return ArrowUpFill;
case 'left':
return ArrowLeftFill;
default:
return ArrowRightFill;
}
};
//# sourceMappingURL=arrow.js.map