fix: Remove unused scss files

This commit is contained in:
Ahmed Bouhuolia
2024-10-13 17:22:14 +02:00
parent e873198238
commit 152a22baa0
13 changed files with 21 additions and 332 deletions

View File

@@ -9,7 +9,7 @@ interface PageFormProps extends SystemProps {
}
/**
*
* Page form layout.
* @returns {React.ReactNode}
*/
export const PageForm = ({ children, ...props }: PageFormProps) => {
@@ -22,22 +22,23 @@ export const PageForm = ({ children, ...props }: PageFormProps) => {
PageForm.displayName = 'PageFormBody';
/**
*
* Page form body layout, by default the content body is scrollable.
* @returns {React.ReactNode}
*/
const PageFormBody: FC<{ children: React.ReactNode } & SystemProps> = ({
children,
...props
}) => {
return (
<x.div flex="1" overflow="auto">
{children}{' '}
<x.div flex="1" overflow="auto" {...props}>
{children}
</x.div>
);
};
PageFormBody.displayName = 'PageFormBody';
/**
*
* Page form footer.
* @returns {React.ReactNode}
*/
const PageFormFooter: FC<{ children: React.ReactNode } & SystemProps> = ({ children }) => {