UNPKG

@fruits-chain/react-native-xiaoshu

Version:
32 lines (26 loc) 666 B
import { ArrowDownOutline, ArrowUpOutline, ArrowLeftOutline, ArrowRightOutline, ArrowDownFill, ArrowUpFill, ArrowLeftFill, ArrowRightFill } from '../'; 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