| 2 | import * as CSS from 'csstype'; |
| 3 | |
| 4 | interface PProps { |
| 5 | style?: CSS.Properties; |
| 6 | children: React.ReactNode; |
| 7 | } |
| 8 | export const P: React.VFC<PProps> = ({ children, style, ...rest }) => ( |
| 9 | <p |
| 10 | style={{ |
nothing calls this directly
no outgoing calls
no test coverage detected