/** * Copyright (c) Paymium. * * This source code is licensed under the MIT license found in the * LICENSE file in the root of this projects source tree. */ import { Text } from './Text'; import { XBox, type XBoxProps } from '../layout/XBox'; import { YBox, type YBoxProps } from '../layout/YBox'; import { composeStyles, createStyles } from '@crossed/styled'; const useList = createStyles((t) => ({ ul: { base: { gap: t.space.xl } }, li: { base: { gap: t.space.md } }, disc: { base: { fontSize: 9 } }, })); export type UlProps = YBoxProps; export const Ul = ({ style, ...props }: UlProps) => { return ( ); }; export type LiProps = XBoxProps; export const Li = ({ children, style, ...props }: LiProps) => { return ( {'\u2B24'} {children as any} ); };