antd-mobile-taro-ui
Version:
以antd-mobile为设计标准,基于taro框架的微信小程序组件库
10 lines • 401 B
JavaScript
import React, { memo } from 'react';
import { withNativeProps } from 'antd-mobile/es/utils/native-props';
import { View } from '@tarojs/components';
import "./corner.css";
const classPrefix = `adm-side-bar-corner`;
export const Corner = memo(props => withNativeProps(props, React.createElement(View, {
className: classPrefix
}, React.createElement(View, {
className: `${classPrefix}-circle`
}))));