| 71 | }; |
| 72 | |
| 73 | interface TextTransitionProps { |
| 74 | readonly direction?: "up" | "down"; |
| 75 | readonly inline?: boolean; |
| 76 | readonly delay?: number; |
| 77 | readonly springConfig?: SpringConfig; |
| 78 | readonly className?: string; |
| 79 | readonly style?: React.CSSProperties; |
| 80 | readonly children: React.ReactNode; |
| 81 | } |
| 82 | |
| 83 | TextTransition.propTypes = { |
| 84 | direction: PropTypes.oneOf(["up", "down"]), |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…