Made all corners required

This commit is contained in:
Patrick Alvin Alcala 2025-09-25 09:23:33 +08:00
parent 7c7afa9171
commit 34dcf21040

View file

@ -3,8 +3,8 @@ import { type JSXElement } from 'solid-js'
interface Props {
left: number
right: number
top?: number
bottom?: number
top: number
bottom: number
children: JSXElement
}