diff options
Diffstat (limited to 'src/components/atoms/layout/sidebar.tsx')
| -rw-r--r-- | src/components/atoms/layout/sidebar.tsx | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/components/atoms/layout/sidebar.tsx b/src/components/atoms/layout/sidebar.tsx deleted file mode 100644 index d290069..0000000 --- a/src/components/atoms/layout/sidebar.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import { FC, HTMLAttributes, ReactNode } from 'react'; -import styles from './sidebar.module.scss'; - -export type SidebarProps = HTMLAttributes<HTMLElement> & { - /** - * The sidebar body. - */ - children: ReactNode; -}; - -/** - * Sidebar component - * - * Render an aside element. - */ -export const Sidebar: FC<SidebarProps> = ({ - children, - className = '', - ...props -}) => { - return ( - <aside {...props} className={`${styles.wrapper} ${className}`}> - <div className={styles.body}>{children}</div> - </aside> - ); -}; |
