rn-custom-style-sheet
Version:
React Native component to select a specific value from a range of values.
11 lines (9 loc) • 360 B
text/typescript
import type { ThemeContextType } from '../../Context';
import type { GuideLineLayoutType } from '../../Provider';
import { useThemeContext } from '../UseThemeContext';
export default function useGuideLineLayout(): Omit<GuideLineLayoutType, ''> {
const {
state: { guideLineLayout },
}: ThemeContextType = useThemeContext();
return guideLineLayout;
}