added alignments icons

This commit is contained in:
Aminejvm 2021-03-24 18:22:39 +01:00
parent 320b66bbd2
commit 58c3700bbc

View File

@ -1765,3 +1765,59 @@ export const Sliders = (props) => (
/>
</svg>
);
export const AlignLeft = (props) => (
<svg
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M17 10H3M21 6H3M21 14H3M17 18H3"
stroke="#000"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
export const AlignCenter = (props) => (
<svg
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M18 10H6M21 6H3M21 14H3M18 18H6"
stroke="#000"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
export const AlignRight = (props) => (
<svg
width={24}
height={24}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path
d="M21 10H7M21 6H3M21 14H3M21 18H7"
stroke="#000"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);