({ children, ...props }: ButtonProps)
| 3 | export type { ButtonProps } |
| 4 | |
| 5 | export function ExampleButton({ children, ...props }: ButtonProps) { |
| 6 | return ( |
| 7 | <TamaguiButton backgroundColor="red" {...props}> |
| 8 | {children} |
| 9 | </TamaguiButton> |
| 10 | ) |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected