UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

16 lines (15 loc) 428 B
import { jsx as _jsx } from "react/jsx-runtime"; import { styled } from '@mui/material/styles'; const PREFIX = 'SCHiddenPlaceholder'; const Root = styled('div', { name: PREFIX, slot: 'Root', overridesResolver: (props, styles) => [styles.root] })(() => ({ height: 1, width: '100%', display: 'none' })); export default function HiddenPlaceholder(props) { return _jsx(Root, Object.assign({}, props)); }