PluginProbe
Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News / 4.0.3
Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News v4.0.3
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 2.3.5 2.3.6 2.4.0 2.4.1 2.4.10 2.4.11 2.4.12 2.4.13 2.4.14 2.4.15 2.4.16 2.4.17 2.4.18 2.4.19 2.4.2 2.4.20 2.4.21 All 88 releases
post-carousel / src / components / selectField / icon.js

icon.js in Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog & News 4.0.3, at src/components/selectField/icon.js

40 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 export const LeftIcon = () => (
2 <svg xmlns="http://www.w3.org/2000/svg" width={24} height={24} fill="none">
3 <path d="M4 19.8h8.9v-1.5H4v1.5Zm8.9-15.6H4v1.5h8.9V4.2Zm-8.9 7v1.5h16v-1.5H4Z" />
4 </svg>
5 );
6 export const LeftIconV = () => (
7 <svg xmlns="http://www.w3.org/2000/svg" width={24} height={24} fill="none">
8 <path d="M19.8 12.9V4h-1.5v8.9h1.5Zm-15.6 0h1.5V4H4.2v8.9Zm8.6 7.1V4h-1.5v16h1.5Z" />
9 </svg>
10 );
11 export const CenterIcon = () => (
12 <svg xmlns="http://www.w3.org/2000/svg" width={24} height={24} fill="none">
13 <path d="M16.4 4.2H7.6v1.5h8.9V4.2h-.1ZM4 11.2v1.5h16v-1.5H4Zm3.6 8.6h8.9v-1.5H7.6v1.5Z" />
14 </svg>
15 );
16 export const RightIcon = () => (
17 <svg xmlns="http://www.w3.org/2000/svg" width={24} height={24} fill="none">
18 <path d="M11.1 19.8H20v-1.5h-8.9v1.5Zm0-15.6v1.5H20V4.2h-8.9ZM4 12.8h16v-1.5H4v1.5Z" />
19 </svg>
20 );
21 export const RightIconV = () => (
22 <svg xmlns="http://www.w3.org/2000/svg" width={24} height={24} fill="none">
23 <path d="M19.8 20v-8.9h-1.5V20h1.5ZM4.2 11.1V20h1.5v-8.9H4.2Zm7 8.9h1.5V4h-1.5v16Z" />
24 </svg>
25 );
26 export const FullWithIcon = () => (
27 <svg
28 xmlns="http://www.w3.org/2000/svg"
29 xmlSpace="preserve"
30 width={24}
31 height={24}
32 style={{
33 enableBackground: "new 0 0 24 24",
34 }}
35 viewBox="0 0 24 24"
36 >
37 <path d="M4 18.3h16v1.5H4zM4 4.3h16v1.5H4zM4 11.3h16v1.5H4z" />
38 </svg>
39 );
40