({ children, className })
| 1 | import React from "react"; |
| 2 | |
| 3 | function ClassicPadding({ children, className }) { |
| 4 | return ( |
| 5 | <div className={"px-4 md:px-56 2xl:px-96" + " " + className}> |
| 6 | {children} |
| 7 | </div> |
| 8 | ); |
| 9 | } |
| 10 | |
| 11 | export default ClassicPadding; |
nothing calls this directly
no outgoing calls
no test coverage detected