import * as React from "react"; import styled from "styled-components"; import CenteredContent from "~/components/CenteredContent"; import Header from "~/components/Header"; import PageTitle from "~/components/PageTitle"; type Props = { icon?: React.ReactNode; title?: React.ReactNode; textTitle?: string; left?: React.ReactNode; actions?: React.ReactNode; centered?: boolean; children?: React.ReactNode; }; const Scene: React.FC = ({ title, icon, textTitle, actions, left, children, centered, }: Props) => (
{icon} {title} ) : ( title ) } actions={actions} left={left} /> {centered !== false ? ( {children} ) : ( children )} ); const FillWidth = styled.div` width: 100%; `; export default Scene;