@tra-tech/react-native-kitra
Version:
UI kit for React Native
14 lines • 341 B
JavaScript
import { useContext } from 'react';
import { TypographyContext } from '../typography/typography';
const useTypograpghy = () => {
const {
typography,
updateTypography
} = useContext(TypographyContext);
return {
typography,
updateTypography
};
};
export default useTypograpghy;
//# sourceMappingURL=useTypography.js.map