0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/console/src/icons/Plus.tsx
Wang Sijie a6e0d19766
fix(console): fix ac ui issues (#505)
* fix: contact us

* fix: text input block

* fix: outline send button

* fix: color border

* fix: nav link

* fix: copy to clipboard border radis set to 6

* fix: add plus icon in buttons

* fix: set cn font size to 12 in sidebar section

* Revert "fix: set cn font size to 12 in sidebar section"

This reverts commit 11899731e7.

* fix: change color-primary-40 to color-primary

* fix: revert color-border

* fix: text input parent line height
2022-04-08 12:30:03 +08:00

12 lines
1 KiB
TypeScript

import React from 'react';
const Plus = () => (
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M15.8335 9.16671H10.8335V4.16671C10.8335 3.94569 10.7457 3.73373 10.5894 3.57745C10.4331 3.42117 10.2212 3.33337 10.0002 3.33337C9.77915 3.33337 9.56719 3.42117 9.41091 3.57745C9.25463 3.73373 9.16683 3.94569 9.16683 4.16671V9.16671H4.16683C3.94582 9.16671 3.73385 9.2545 3.57757 9.41078C3.42129 9.56706 3.3335 9.77903 3.3335 10C3.3335 10.2211 3.42129 10.433 3.57757 10.5893C3.73385 10.7456 3.94582 10.8334 4.16683 10.8334H9.16683V15.8334C9.16683 16.0544 9.25463 16.2663 9.41091 16.4226C9.56719 16.5789 9.77915 16.6667 10.0002 16.6667C10.2212 16.6667 10.4331 16.5789 10.5894 16.4226C10.7457 16.2663 10.8335 16.0544 10.8335 15.8334V10.8334H15.8335C16.0545 10.8334 16.2665 10.7456 16.4228 10.5893C16.579 10.433 16.6668 10.2211 16.6668 10C16.6668 9.77903 16.579 9.56706 16.4228 9.41078C16.2665 9.2545 16.0545 9.16671 15.8335 9.16671Z"
fill="#C6C0FF"
/>
</svg>
);
export default Plus;