Files
dukang/apps/mini-user/src/components/BenefitSloganBar.tsx
T
jacy 9c8d5f2cad feat(assoc): v4.0.1 合伙人关联码、分佣账单与 H5 用户管理
订单佣金只认关联用户;合伙人备注写入独立表;H5 增加用户管理与首页统计。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-30 14:35:39 +08:00

16 lines
476 B
TypeScript

import { View, Text } from '@tarojs/components';
import { BENEFIT_SLOGAN } from '../lib/benefit-copy';
type BenefitSloganBarProps = {
className?: string;
};
export default function BenefitSloganBar({ className }: BenefitSloganBarProps) {
return (
<View className={`benefit-slogan-bar${className ? ` ${className}` : ''}`}>
<View className="benefit-slogan-bar-accent" />
<Text className="benefit-slogan-bar-text">{BENEFIT_SLOGAN}</Text>
</View>
);
}