| {{ target: partial-padding }} | |
| <ExampleUIControlVector min="0" dims="T,R,B,L" /> | |
| ${componentName} space around content. The unit is px. Default values for each position are 5. And they can be set to different values with left, right, top, and bottom. | |
| Examples: | |
| ```ts | |
| // Set padding to be 5 | |
| padding: 5 | |
| // Set the top and bottom paddings to be 5, and left and right paddings to be 10 | |
| padding: [5, 10] | |
| // Set each of the four paddings separately | |
| padding: [ | |
| 5, // up | |
| 10, // right | |
| 5, // down | |
| 10, // left | |
| ] | |
| ``` | |