mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-28 00:47:53 +00:00
* temp commit :: editor redesign
* fix :: components panel ui
* style updates
* fix :: arrangement widget list
* fix :: light mode widget list
* style fixes query manager
* updates
* updates heaer styles
* global settings fix
* left sidebar states and icon change
* cleanup
* minor fixes :: review
* fix opacity mode toggle
* detailing in hover states , bugfixes
* fix :: coloring whole app , debugger ui
* cleanup
* fix :: revert some changes , fix statistics widget
* feat :: navbar with new layout
* fix :: lint warnings
* cleanup
* cleanup
* minor fixes
* fix :: reusing serchbox
* removed unwanted prop
* Revert "cleanup"
This reverts commit b18abe19fb.
* fix :: icons sidebar
* fix :: padding searchbar
* style fix
* radix :: dark theme for portals
* fix :: icon styles
* fix :: all codehinter styles
* update :: base bg color app
* fix :: viewer color
* minor fixes :: icon left sidebar
* typo
* fix :: styling save message header
* icon :: fix for layout and inspector queries
* fix :: canvas and editor bg
* fix :: release btn style
* fix :: navbar border
* undo redo tooltip
* fix :: page input
* remove released btn icon
* fix :: for icon not loading proper in inspector
* fix :: dark mode toggle icon size
* fix :: share app ui
* fix :: style fixes , inspector runpy icon
* fix :: ui runpy codehinter
* fix :: inputs in gds connection
* cleanup
* fix :: copilot codehinter ui
* fix :: share modal button
* fix :: canvas bg text
* style fix debugger
* fix :: whole dahsboard layout and border for all codehinters
* fix :: icon fills
* fix :: icon fill color sidebar
* darkmode fill color
* minor style fix
* Widget inspector redesign (#7355)
* Setup Storybook
* Update storybook config
* Add tab and toggle group component
* Created list component
* Properties tab
* update codehinter dropdown components
* Refactor styling
* Inspector header changes
* Fix es lint issue
* Fix
* feat :: styling color picker styles panel
* Fix color picker alignment
* feat :: remove alpha
* Fix UI bugs
* fix :: color picker
* Ui fix
* Backward compatible pagination changes
* fix
* Feedback changes
* UI feedback
* Check fix
* Fix
* fix :: canvas bg popover
* Styles fix
* Fix conflct issues
* minor style fix style tab
* Fix
* review comments fix :: hovering in color picker
* Code review and design feedback
* UI feedback
* Fix UI styles
* Fix pagination issue
* fix :: dark mode issues in select , number input
* fix :: remove extra boreder
* fix :: table column popover ui and component popover inspector
* fix :: datepickre input table column
* fix :: colopicker in table column inspector
* fix :: link column type ui in table
* fix :: column delete ui and delete not triggering
* Fix list item not dragging
* fix :: closing of popover on link column select
* style fix table popover
* Pass dark mode to Event manager button
* fix :: ux event manager
* cleanup
* cleanup
* fix :: delete page modal ui
---------
Co-authored-by: stepinfwd <stepinfwd@gmail.com>
* style fixes
---------
Co-authored-by: Nakul Nagargade <133095394+nakulnagargade@users.noreply.github.com>
33 lines
1.2 KiB
JavaScript
33 lines
1.2 KiB
JavaScript
import React from 'react';
|
|
|
|
const Link = ({ fill = '#D7DBDF', width = 24, className = '', viewBox = '0 0 49 48' }) => (
|
|
<svg
|
|
width={width}
|
|
height={width}
|
|
viewBox={viewBox}
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className={className}
|
|
>
|
|
<path
|
|
fill="#3E63DD"
|
|
d="M40.974 7.915a4.1 4.1 0 00-5.799 0L33.341 9.75a2.357 2.357 0 11-3.333-3.333l1.834-1.834a8.814 8.814 0 1112.465 12.465l-1.834 1.834a2.357 2.357 0 11-3.334-3.334l1.835-1.834a4.1 4.1 0 000-5.798z"
|
|
></path>
|
|
<path
|
|
fill="#3E63DD"
|
|
d="M36.782 12.107c.92.92.92 2.413 0 3.333l-4.857 4.857a2.357 2.357 0 01-3.334-3.333l4.858-4.857c.92-.92 2.413-.92 3.333 0z"
|
|
></path>
|
|
<path
|
|
fill="#3E63DD"
|
|
d="M26.352 16.738a2.357 2.357 0 00-3.333-3.333l-1.834 1.834A8.814 8.814 0 1033.65 27.704l1.834-1.834a2.357 2.357 0 00-3.334-3.333l-1.833 1.834a4.1 4.1 0 11-5.799-5.799l1.834-1.834z"
|
|
></path>
|
|
<path
|
|
fill={fill}
|
|
fillRule="evenodd"
|
|
d="M18.407 30.482c4.976 4.976 13.044 4.976 18.02 0l1.033-1.032v11.836A4.714 4.714 0 0132.746 46H7.603a4.714 4.714 0 01-4.714-4.714V16.143a4.714 4.714 0 014.714-4.715h11.836l-1.032 1.033c-4.977 4.976-4.977 13.045 0 18.02z"
|
|
clipRule="evenodd"
|
|
></path>
|
|
</svg>
|
|
);
|
|
|
|
export default Link;
|