You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mobile/components/ui/SegmentedControl.tsx

18 lines
399 B

import React from "react";
import SegmentedControl, {
SegmentedControlProps,
} from "@react-native-segmented-control/segmented-control";
export default React.forwardRef<any, SegmentedControlProps>(
(props, ref): React.ReactElement => {
return (
<SegmentedControl
tintColor="#3B82F6"
backgroundColor="#3B82F6"
{...ref}
{...props}
/>
);
}
);