MCPcopy Index your code
hub / github.com/lodev09/react-native-true-sheet / ButtonProps

Interface ButtonProps

example/shared/src/components/Button.tsx:5–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import { BUTTON_HEIGHT, DARK_BLUE, SPACING } from '../utils';
4
5interface ButtonProps extends PressableProps {
6 text: string;
7 hint?: string;
8 loading?: boolean;
9}
10
11export const Button = (props: ButtonProps) => {
12 const { text, hint, style, loading, ...rest } = props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected