import React, {FC, PropsWithChildren} from "react"; import classNames from "classnames"; export type containerProps = { withBorder?: boolean; padding?: string; // paddding classname margin?: string; // margin classname alignment?: 'left' | 'center' | 'right'; } export const Container: FC = ({withBorder = true, padding, children, alignment = 'center', margin}) => { return
{children}
}