(value: number | TRBL | Point)
| 73 | * @since 3.0.0 |
| 74 | */ |
| 75 | export function toTRBL(value: number | TRBL | Point) { |
| 76 | return _readValueToProps(value, {top: 'y', right: 'x', bottom: 'y', left: 'x'}); |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Converts the given value into a TRBL corners object (similar with css border-radius). |
no test coverage detected