-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
import { svg } from "lit-element";
export const HorizontalPaddingIcon = () => svg`
<svg title="horizontal padding" width="14" height="14" viewBox="0 0 29 28" fill="none">
<rect x="7" y="8" width="14" height="14" stroke="#B3B3B3" stroke-width="2"/>
<path d="M27 1V28" stroke="#B3B3B3" stroke-width="2"/>
<path d="M1 0V28" stroke="#B3B3B3" stroke-width="2"/>
</svg>
`;
export const VerticalPaddingIcon = () => svg`
<svg title="vertical padding" width="14" height="14" viewBox="0 0 29 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="8" y="21" width="14" height="14" transform="rotate(-90 8 21)" stroke="#B3B3B3" stroke-width="2"/>
<path d="M1 1L28 0.999999" stroke="#B3B3B3" stroke-width="2"/>
<path d="M0 27L28 27" stroke="#B3B3B3" stroke-width="2"/>
</svg>
`;
export const BorderRadiusIcon = () => svg`
<svg title="vertical padding" width="14" height="14" viewBox="0 0 29 28" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M29.0046 2C2.00465 2 2 2.2 2 29" stroke="#B3B3B3" stroke-width="3"/>
</svg>
`;