import React from 'react'; import { Button, Tag } from 'infrad'; import { MessageOutlined, LikeOutlined, StarOutlined } from 'infra-design-icons'; import ProList from 'infrad-pro-list'; const IconText = ({ icon, text }: { icon: any; text: string }) => ( {React.createElement(icon, { style: { marginRight: 8 } })} {text} ); const dataSource = [ { title: '语雀的天空', }, { title: 'Ant Design', }, { title: '蚂蚁金服体验科技', }, { title: 'TechUI', }, ]; export default () => { return ( toolBarRender={() => { return [ , ]; }} itemLayout="vertical" rowKey="id" headerTitle="竖排样式" dataSource={dataSource} metas={{ title: {}, description: { render: () => ( <> 语雀专栏 设计语言 蚂蚁金服 ), }, actions: { render: () => [ , , , ], }, extra: { render: () => ( logo ), }, content: { render: () => { return (
段落示意:蚂蚁金服设计平台 design.alipay.com,用最小的工作量,无缝接入蚂蚁金服生态,提供跨越设计与开发的体验解决方案。蚂蚁金服设计平台 design.alipay.com,用最小的工作量,无缝接入蚂蚁金服生态提供跨越设计与开发的体验解决方案。
); }, }, }} /> ); };