import { mergeProps } from "solid-js" interface Props { /** 过渡的开始颜色 */ startColor?: string /** 过渡的结束颜色 */ endColor?: string } const CornerBottom = (props: Props) => { const merged = mergeProps( { startColor: "#28aff0", endColor: "#120fc4", }, props, ) return ( ) } export default CornerBottom