import type { HTMLProps, Ref } from 'react';
import { css, cx } from '@emotion/css';
import type { CSSProperties } from './styles';
type BlockProps = Omit, 'style'> & {
innerRef?: Ref;
style?: CSSProperties;
};
export function Block(props: BlockProps) {
const { className = '', style, innerRef, ...restProps } = props;
return (
);
}