mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* bump version * Sample data source (#9501) * Added sample data populating script * added expand-collapse in add data soure menu * Sample database * Design changes * Added CTA to buttons and added design changes * Added code sanity fix for some services * changed configration for create sampke db and code sanity fix * Removed logs * Added xlsx in dependency * added migration for sample db * Added loggin for testing * Added await in migration * Replace excel sheet with JSON files * reverted package-lock file * Fixed issues * dependecy deletion * Added schedular * Added changes for bug fixes and typeorm query for creating sample db * Removed color.scss file import * Add logo in sample application * add documentation link for sample db * fixed migration issue for data queries creation * removed sample db intergration * bump version * Remove .env file and code sanity * deleted migration file --------- Co-authored-by: Kritagya <kriks.iitk@.com> Co-authored-by: Kritagya Kumar <kritagyakumar@192.168.1.6> Co-authored-by: kriks7raptor <kritagya@raptorx.ai> Co-authored-by: gsmithun4 <gsmithun4@gmail.com> * Add data-cy for drag drop empty canvas card (#9513) * Add sample db condition on all components (#9516) * Add sample db condition on all components * Changed empty state for container * Condiiton on sample data source --------- Co-authored-by: kriks7raptor <kritagya@raptorx.ai> * Release fix: subpath (#9535) * Add sample db condition on all components * Changed empty state for container * Condiiton on sample data source * fixed subpath issue for workspace setting and folders * Folder change handler in subpath --------- Co-authored-by: kriks7raptor <kritagya@raptorx.ai> * fixed version * fixed version * fixed version * update server version * Bump version to v2.39.0 --------- Co-authored-by: kriks7iitk <34170719+kriks7iitk@users.noreply.github.com> Co-authored-by: Kritagya <kriks.iitk@.com> Co-authored-by: Kritagya Kumar <kritagyakumar@192.168.1.6> Co-authored-by: kriks7raptor <kritagya@raptorx.ai> Co-authored-by: Ajith KV <ajith.jaban@gmail.com> Co-authored-by: kriks7iitk <kriks.iitk@gmail.com> Co-authored-by: Adish M <44204658+adishM98@users.noreply.github.com> Co-authored-by: Muhsin Shah <muhsinshah21@gmail.com>
21 lines
1.4 KiB
JavaScript
21 lines
1.4 KiB
JavaScript
import React from 'react';
|
|
|
|
const Open = ({ fill = '#3E63DD', width = '11', height = '10', className = '', viewBox = '0 0 11 10' }) => (
|
|
<svg
|
|
width={width}
|
|
height={height}
|
|
viewBox={viewBox}
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
className={className}
|
|
>
|
|
<path
|
|
fill-rule="evenodd"
|
|
clip-rule="evenodd"
|
|
d="M9.88378 0.0644531L6.88379 0.0644536C6.67668 0.0644537 6.50879 0.232347 6.50879 0.439453C6.50879 0.64656 6.67668 0.814454 6.88379 0.814454L8.97845 0.814453L4.11862 5.67429C3.97218 5.82073 3.97218 6.05817 4.11862 6.20462C4.26507 6.35106 4.50251 6.35106 4.64895 6.20462L9.50879 1.34478L9.50879 3.43945C9.50879 3.64656 9.67668 3.81445 9.88379 3.81445C10.0909 3.81445 10.2588 3.64656 10.2588 3.43945L10.2588 0.439453C10.2588 0.232346 10.0909 0.0644531 9.88378 0.0644531ZM2.88379 1.06445C1.57211 1.06445 0.508789 2.12778 0.508789 3.43945V7.43945C0.508789 8.75113 1.57211 9.81445 2.88379 9.81445H6.88379C8.19547 9.81445 9.25879 8.75113 9.25879 7.43945V4.93945C9.25879 4.73235 9.0909 4.56445 8.88379 4.56445C8.67668 4.56445 8.50879 4.73235 8.50879 4.93945V7.43945C8.50879 8.33692 7.78125 9.06445 6.88379 9.06445H2.88379C1.98633 9.06445 1.25879 8.33692 1.25879 7.43945V3.43945C1.25879 2.54199 1.98633 1.81445 2.88379 1.81445H5.38379C5.5909 1.81445 5.75879 1.64656 5.75879 1.43945C5.75879 1.23235 5.5909 1.06445 5.38379 1.06445H2.88379Z"
|
|
fill={fill}
|
|
/>
|
|
</svg>
|
|
);
|
|
|
|
export default Open;
|