react95
Version:
Refreshed Windows95 UI components for modern web apps - React95
13 lines (10 loc) • 416 B
JavaScript
import React__default, { forwardRef } from 'react';
import styled from 'styled-components';
const StyledWindowContent = styled.div`
padding: 16px;
`;
const WindowContent = forwardRef(function WindowContent2({ children, ...otherProps }, ref) {
return React__default.createElement(StyledWindowContent, { ref, ...otherProps }, children);
});
WindowContent.displayName = "WindowContent";
export { WindowContent };