import * as React from 'react' import { Image, types } from 'react-bricks/rsc' import blockNames from '../../blockNames' interface TextMediaLogoProps { image: types.IImageSource } const TextMediaLogo: types.Brick = ({ image }) => { return (
logo (
{children}
)} />
) } TextMediaLogo.schema = { name: blockNames.TextMediaLogo, label: 'Logo', category: 'main content', hideFromAddMenu: true, playgroundLinkLabel: 'View source code on Github', playgroundLinkUrl: 'https://github.com/ReactBricks/reactbricks-starters/blob/main/packages/reactbricks-ui/nextjs-app/src/mainContent/TextMedia/TextMediaLogo.tsx', //getDefaultProps: () => ({}), } export default TextMediaLogo