feat: first commit

This commit is contained in:
eleanor.mao
2025-03-31 22:34:22 +08:00
commit d25187c9c8
390 changed files with 57031 additions and 0 deletions

View File

@ -0,0 +1,12 @@
.bl-cell {
height: 112px;
padding-left: 24px;
padding-right: 24px;
border-radius: 16px;
&__right-text {
font-size: 28px;
font-weight: 400;
color: @blColor;
}
}

View File

@ -0,0 +1,22 @@
import { Cell } from '@taroify/core';
import { CellProps } from '@taroify/core/cell';
import classNames from 'classnames';
import './index.less';
interface IProps extends CellProps {
rightText?: string;
}
const PREFIX = 'bl-cell';
function BlCell(props: IProps) {
const { className, rightText, ...otherProps } = props;
return (
<Cell className={classNames(PREFIX, className)} {...otherProps}>
{rightText && <div className={`${PREFIX}__right-text`}>{rightText}</div>}
</Cell>
);
}
export default BlCell;