MCPcopy Create free account
hub / github.com/LearnPrompt/LearnPrompt / ClassicPadding

Function ClassicPadding

src/components/layouts/ClassicPadding.js:3–9  ·  view source on GitHub ↗
({ children, className })

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected