import clsx from 'clsx'; import React from 'react'; import './styles.scss'; interface Props { children: React.ReactNode; className?: string; width?: 'medium' | 'small'; isMonoBg?: boolean; animate?: boolean; } export function LayoutBlock( props: Props ) { const { children, className, width, isMonoBg, animate = true } = props; return (
{ children }
); } export function LayoutBlockSection( props: Props ) { const { children, className } = props; return
{ children }
; }