react-native-really-awesome-button
Version:
React Native Button UI component that renders an 60fps animated set of progress enabled 3D performant buttons.
53 lines (51 loc) • 717 B
text/typescript
import {
TWITTER,
MESSENGER,
FACEBOOK,
GITHUB,
LINKEDIN,
WHATSAPP,
REDDIT,
PINTEREST,
YOUTUBE,
} from './constants';
export default function (common: any) {
return {
twitter: {
...common,
...TWITTER,
},
messenger: {
...common,
...MESSENGER,
},
facebook: {
...common,
...FACEBOOK,
},
github: {
...common,
...GITHUB,
},
linkedin: {
...common,
...LINKEDIN,
},
whatsapp: {
...common,
...WHATSAPP,
},
reddit: {
...common,
...REDDIT,
},
pinterest: {
...common,
...PINTEREST,
},
youtube: {
...common,
...YOUTUBE,
},
};
}