* Fixes spacings style * Fix spacings * Update test * Fix router push when image upload is success, also typo * Fix styles for mobile * Sumodule sync Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> Co-authored-by: zomars <zomars@me.com>
10 lines
242 B
TypeScript
10 lines
242 B
TypeScript
const StepCard: React.FC<{ children: React.ReactNode }> = (props) => {
|
|
return (
|
|
<div className="mt-10 rounded-md border border-gray-200 bg-white p-4 dark:bg-black sm:p-8">
|
|
{props.children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export { StepCard };
|