Last active
January 20, 2025 05:34
-
-
Save sumitpore/fc525b8e46ba3c5e8c418928fec65091 to your computer and use it in GitHub Desktop.
Temp cursorfiles
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This comprehensive guide outlines best practices, | |
conventions, | |
and standards for development with modern web technologies including VueJS, | |
ReactJS, | |
NextJS, | |
Redux, | |
TypeScript, | |
JavaScript, | |
HTML, | |
CSS, | |
and UI frameworks. Development Philosophy - Write clean, | |
maintainable, | |
and scalable code - Follow SOLID and KISS principles - Prefer functional and declarative programming patterns over imperative - Emphasize type safety and static analysis - Practice component-driven development - Ensure code is easy to understand for people who just started learning coding Code Implementation Guidelines Planning Phase - Begin with step-by-step planning - Write detailed pseudocode before implementation - Document component architecture and data flow - Consider edge cases and error scenarios Code Style - Use tabs for indentation - Use single quotes for strings (except to avoid escaping) - Omit semicolons (unless required for disambiguation) - Eliminate unused variables - Add space after keywords - Add space before function declaration parentheses - Always use strict equality (===) instead of loose equality (==) - Space infix operators - Add space after commas - Keep else statements on the same line as closing curly braces - Use curly braces for multi-line if statements - Always handle error parameters in callbacks - Limit line length to 80 characters - Use trailing commas in multiline object/array literals Naming Conventions General Rules - Use PascalCase for: - Components - Type definitions - Interfaces - Use kebab-case for: - Directory names (e.g., components/auth-wizard) - File names (e.g., user-profile.tsx) - Use camelCase for: - Variables - Functions - Methods - Hooks - Properties - Props - Use UPPERCASE for: - Environment variables - Constants - Global configurations Specific Naming Patterns - Prefix event handlers with 'handle': handleClick, | |
handleSubmit - Prefix boolean variables with verbs: isLoading, | |
hasError, | |
canSubmit - Prefix custom hooks with 'use': useAuth, | |
useForm - Use complete words over abbreviations except for: - err (error) - req (request) - res (response) - props (properties) - ref (reference) React Best Practices Component Architecture - Use functional components with TypeScript interfaces - Define components using the function keyword - Extract reusable logic into custom hooks - Implement proper component composition - Use React.memo() strategically for performance - Implement proper cleanup in useEffect hooks React Performance Optimization - Use useCallback for memoizing callback functions - Implement useMemo for expensive computations - Avoid inline function definitions in JSX - Implement code splitting using dynamic imports - Implement proper key props in lists (avoid using index as key) Next.js Best Practices Core Concepts - Utilize App Router for routing - Implement proper metadata management - Use proper caching strategies - Implement proper error boundaries Components and Features - Use Next.js built-in components: - Image component for optimized images - Link component for client-side navigation - Script component for external scripts - Head component for metadata - Implement proper loading states - Use proper data fetching methods Server Components - Default to Server Components - Use URL query parameters for data fetching and server state management - Use 'use client'directive only when necessary: - Event listeners - Browser APIs - State management - Client-side-only libraries TypeScript Implementation - Enable strict mode - Define clear interfaces for component props, | |
state, | |
and Redux state structure. - Use type guards to handle potential undefined or null values safely. - Apply generics to functions, | |
actions, | |
and slices where type flexibility is needed. - Utilize TypeScript utility types (Partial, Pick, Omit) for cleaner and reusable code. - Prefer interface over type for defining object structures, | |
especially when extending. - Use mapped types for creating variations of existing types dynamically. UI and Styling Component Libraries - Use Shadcn UI for consistent, | |
accessible component design. - Integrate Radix UI primitives for customizable, | |
accessible UI elements. - Apply composition patterns to create modular, | |
reusable components. Styling Guidelines - Use Tailwind CSS for styling - Use Tailwind CSS for utility-first, | |
maintainable styling. - Design with mobile-first, | |
responsive principles for flexibility across devices. - Implement dark mode using CSS variables or Tailwind’s dark mode features. - Ensure color contrast ratios meet accessibility standards for readability. - Maintain consistent spacing values to establish visual harmony. - Define CSS variables for theme colors and spacing to support easy theming and maintainability. State Management Local State - Use useState for component-level state - Implement useReducer for complex state - Use useContext for shared state - Implement proper state initialization Global State - Use Redux Toolkit for global state - Use createSlice to define state, | |
reducers, | |
and actions together. - Avoid using createReducer and createAction unless necessary. - Normalize state structure to avoid deeply nested data. - Use selectors to encapsulate state access. - Avoid large, | |
all-encompassing slices; | |
separate concerns by feature. Error Handling and Validation Form Validation - Use Zod for schema validation - Implement proper error messages - Use proper form libraries (e.g., React Hook Form) Error Boundaries - Use error boundaries to catch and handle errors in React component trees gracefully. - Log caught errors to an external service (e.g., Sentry) for tracking and debugging. - Design user-friendly fallback UIs to display when errors occur, | |
keeping users informed without breaking the app. Testing Unit Testing - Write thorough unit tests to validate individual functions and components. - Use Jest and React Testing Library for reliable and efficient testing of React components. - Follow patterns like Arrange-Act-Assert to ensure clarity and consistency in tests. - Mock external dependencies and API calls to isolate unit tests. Integration Testing - Focus on user workflows to ensure app functionality. - Set up and tear down test environments properly to maintain test independence. - Use snapshot testing selectively to catch unintended UI changes without over-relying on it. - Leverage testing utilities (e.g., screen in RTL) for cleaner and more readable tests. Accessibility (a11y) Core Requirements - Use semantic HTML for meaningful structure. - Apply accurate ARIA attributes where needed. - Ensure full keyboard navigation support. - Manage focus order and visibility effectively. - Maintain accessible color contrast ratios. - Follow a logical heading hierarchy. - Make all interactive elements accessible. - Provide clear and accessible error feedback. Security - Implement input sanitization to prevent XSS attacks. - Use DOMPurify for sanitizing HTML content. - Use proper authentication methods. Internationalization (i18n) - Use next-i18next for translations - Implement proper locale detection - Use proper number and date formatting - Implement proper RTL support - Use proper currency formatting Documentation - Use JSDoc for documentation - Document all public functions, | |
classes, | |
methods, | |
and interfaces - Add examples when appropriate - Use complete sentences with proper punctuation - Keep descriptions clear and concise - Use proper markdown formatting - Use proper code blocks - Use proper links - Use proper headings - Use proper lists Homepage Desktop Figma Design: { | |
"id": "44:14919", | |
"name": "HF - Home Car Rent - Desktop", | |
"type": "FRAME", | |
"x": -4000, | |
"y": -1321, | |
"width": 1440, | |
"height": 2724, | |
"relativeTransform": [ [ 1, | |
0, | |
-4000], | |
[ 0, | |
1, | |
-1321]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:14920", | |
"name": "Content", | |
"type": "FRAME", | |
"x": 0, | |
"y": 124, | |
"width": 1440, | |
"height": 2120, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
124]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.9647058844566345, | |
"g": 0.9686274528503418, | |
"b": 0.9764705896377563 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:14921", | |
"name": "Ads 1", | |
"type": "FRAME", | |
"x": 64, | |
"y": 32, | |
"width": 640, | |
"height": 360, | |
"relativeTransform": [ [ 1, | |
0, | |
64], | |
[ 0, | |
1, | |
32]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3294117748737335, | |
"g": 0.6509804129600525, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:14922", | |
"name": "BG", | |
"type": "GROUP", | |
"x": -157, | |
"y": -83, | |
"width": 775, | |
"height": 775, | |
"relativeTransform": [ [ 1, | |
0, | |
-157], | |
[ 0, | |
1, | |
-83]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:14923", | |
"name": "Ellipse 36", | |
"type": "ELLIPSE", | |
"x": 205, | |
"y": 280, | |
"width": 50, | |
"height": 50, | |
"relativeTransform": [ [ 1, | |
0, | |
205], | |
[ 0, | |
1, | |
280]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 10, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14924", | |
"name": "Ellipse 37", | |
"type": "ELLIPSE", | |
"x": 155, | |
"y": 230, | |
"width": 150, | |
"height": 150, | |
"relativeTransform": [ [ 1, | |
0, | |
155], | |
[ 0, | |
1, | |
230]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 20, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14925", | |
"name": "Ellipse 38", | |
"type": "ELLIPSE", | |
"x": 93, | |
"y": 167, | |
"width": 275, | |
"height": 275, | |
"relativeTransform": [ [ 1, | |
0, | |
93], | |
[ 0, | |
1, | |
167]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 20, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14926", | |
"name": "Ellipse 39", | |
"type": "ELLIPSE", | |
"x": 30, | |
"y": 105, | |
"width": 400, | |
"height": 400, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
105]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 20, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14927", | |
"name": "Ellipse 40", | |
"type": "ELLIPSE", | |
"x": -32, | |
"y": 42, | |
"width": 525, | |
"height": 525, | |
"relativeTransform": [ [ 1, | |
0, | |
-32], | |
[ 0, | |
1, | |
42]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 20, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14928", | |
"name": "Ellipse 41", | |
"type": "ELLIPSE", | |
"x": -95, | |
"y": -20, | |
"width": 650, | |
"height": 650, | |
"relativeTransform": [ [ 1, | |
0, | |
-95], | |
[ 0, | |
1, | |
-20]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 20, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14929", | |
"name": "Ellipse 42", | |
"type": "ELLIPSE", | |
"x": -157, | |
"y": -83, | |
"width": 775, | |
"height": 775, | |
"relativeTransform": [ [ 1, | |
0, | |
-157], | |
[ 0, | |
1, | |
-83]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 20, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14930", | |
"name": "image 7", | |
"type": "RECTANGLE", | |
"x": 137, | |
"y": 234, | |
"width": 406, | |
"height": 116, | |
"relativeTransform": [ [ 1, | |
0, | |
137], | |
[ 0, | |
1, | |
234]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 0.9998507499694824, | |
0, | |
0.00007462686335202307], | |
[ 0, | |
0.5799999833106995, | |
0.2800000011920929]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": 0, | |
"contrast": 0, | |
"saturation": 0, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": 0, | |
"shadows": 0 | |
} | |
, | |
"imageHash": "2385cc01da9bb791587b8022c475d39822c50c17" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:14931", | |
"name": "Ads", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 284, | |
"height": 224, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 20, | |
"children": [ { | |
"id": "44:14932", | |
"name": "Title", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 284, | |
"height": 160, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:14933", | |
"name": "The Best Platform for Car Rental", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 272, | |
"height": 96, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14934", | |
"name": "Ease of doing a car rental safely and reliably. Of course at a low price.", | |
"type": "TEXT", | |
"x": 0, | |
"y": 112, | |
"width": 284, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
112]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:14935", | |
"name": "Button Rent", | |
"type": "FRAME", | |
"x": 0, | |
"y": 180, | |
"width": 120, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
180]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:14936", | |
"name": "Rental Car", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 80, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:14937", | |
"name": "Ads 2", | |
"type": "FRAME", | |
"x": 736, | |
"y": 32, | |
"width": 640, | |
"height": 360, | |
"relativeTransform": [ [ 1, | |
0, | |
736], | |
[ 0, | |
1, | |
32]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:14938", | |
"name": "BG", | |
"type": "GROUP", | |
"x": -30, | |
"y": 0, | |
"width": 758, | |
"height": 360, | |
"relativeTransform": [ [ 1, | |
0, | |
-30], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:14939", | |
"name": "Rectangle 23759", | |
"type": "VECTOR", | |
"x": -29, | |
"y": 240, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
-29], | |
[ 0, | |
1, | |
240]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14940", | |
"name": "Rectangle 23760", | |
"type": "VECTOR", | |
"x": 62, | |
"y": 240, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
62], | |
[ 0, | |
1, | |
240]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14941", | |
"name": "Rectangle 23761", | |
"type": "VECTOR", | |
"x": 153, | |
"y": 240, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
153], | |
[ 0, | |
1, | |
240]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14942", | |
"name": "Rectangle 23762", | |
"type": "VECTOR", | |
"x": 244, | |
"y": 240, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
244], | |
[ 0, | |
1, | |
240]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14943", | |
"name": "Rectangle 23763", | |
"type": "VECTOR", | |
"x": 335, | |
"y": 240, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
335], | |
[ 0, | |
1, | |
240]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14944", | |
"name": "Rectangle 23764", | |
"type": "VECTOR", | |
"x": 426, | |
"y": 240, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
426], | |
[ 0, | |
1, | |
240]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14945", | |
"name": "Rectangle 23765", | |
"type": "VECTOR", | |
"x": 517, | |
"y": 240, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
517], | |
[ 0, | |
1, | |
240]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14946", | |
"name": "Rectangle 23766", | |
"type": "VECTOR", | |
"x": 608, | |
"y": 240, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
608], | |
[ 0, | |
1, | |
240]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14947", | |
"name": "Rectangle 23767", | |
"type": "VECTOR", | |
"x": 16, | |
"y": 120, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
16], | |
[ 0, | |
1, | |
120]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14948", | |
"name": "Rectangle 23768", | |
"type": "VECTOR", | |
"x": 107, | |
"y": 120, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
107], | |
[ 0, | |
1, | |
120]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14949", | |
"name": "Rectangle 23769", | |
"type": "VECTOR", | |
"x": 198, | |
"y": 120, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
198], | |
[ 0, | |
1, | |
120]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14950", | |
"name": "Rectangle 23770", | |
"type": "VECTOR", | |
"x": 289, | |
"y": 120, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
289], | |
[ 0, | |
1, | |
120]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14951", | |
"name": "Rectangle 23771", | |
"type": "VECTOR", | |
"x": 380, | |
"y": 120, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
380], | |
[ 0, | |
1, | |
120]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14952", | |
"name": "Rectangle 23772", | |
"type": "VECTOR", | |
"x": 471, | |
"y": 120, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
471], | |
[ 0, | |
1, | |
120]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14953", | |
"name": "Rectangle 23773", | |
"type": "VECTOR", | |
"x": 562, | |
"y": 120, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
562], | |
[ 0, | |
1, | |
120]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14954", | |
"name": "Rectangle 23774", | |
"type": "VECTOR", | |
"x": 653, | |
"y": 120, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
653], | |
[ 0, | |
1, | |
120]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14955", | |
"name": "Rectangle 23775", | |
"type": "VECTOR", | |
"x": -30, | |
"y": 0, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
-30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14956", | |
"name": "Rectangle 23776", | |
"type": "VECTOR", | |
"x": 61, | |
"y": 0, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
61], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14957", | |
"name": "Rectangle 23777", | |
"type": "VECTOR", | |
"x": 152, | |
"y": 0, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
152], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14958", | |
"name": "Rectangle 23778", | |
"type": "VECTOR", | |
"x": 243, | |
"y": 0, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
243], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14959", | |
"name": "Rectangle 23779", | |
"type": "VECTOR", | |
"x": 334, | |
"y": 0, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
334], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14960", | |
"name": "Rectangle 23780", | |
"type": "VECTOR", | |
"x": 425, | |
"y": 0, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
425], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14961", | |
"name": "Rectangle 23781", | |
"type": "VECTOR", | |
"x": 516, | |
"y": 0, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
516], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14962", | |
"name": "Rectangle 23782", | |
"type": "VECTOR", | |
"x": 607, | |
"y": 0, | |
"width": 75, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
607], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14963", | |
"name": "image 8", | |
"type": "RECTANGLE", | |
"x": 527, | |
"y": 232, | |
"width": 340, | |
"height": 108, | |
"relativeTransform": [ [ -1, | |
0, | |
527], | |
[ 0, | |
1, | |
232]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
0.42487043142318726, | |
0.31865283846855164]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": 0, | |
"contrast": 0, | |
"saturation": 0, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": 0, | |
"shadows": 0 | |
} | |
, | |
"imageHash": "702f356e48fe531e6fd2626c5d1041dbfcde3341" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:14964", | |
"name": "Ads", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 284, | |
"height": 224, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 20, | |
"children": [ { | |
"id": "44:14965", | |
"name": "Title", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 284, | |
"height": 160, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:14966", | |
"name": "Easy way to rent a car at a low price", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 272, | |
"height": 96, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14967", | |
"name": "Providing cheap car rental services and safe and comfortable facilities.", | |
"type": "TEXT", | |
"x": 0, | |
"y": 112, | |
"width": 284, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
112]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:14968", | |
"name": "Button Rent", | |
"type": "FRAME", | |
"x": 0, | |
"y": 180, | |
"width": 120, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
180]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3294117748737335, | |
"g": 0.6509804129600525, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:14969", | |
"name": "Rental Car", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 80, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:14970", | |
"name": "Switch", | |
"type": "GROUP", | |
"x": 690, | |
"y": 520, | |
"width": 60, | |
"height": 60, | |
"relativeTransform": [ [ 9.71445146547012e-17, | |
1, | |
690], | |
[ -1, | |
9.71445146547012e-17, | |
520]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:14971", | |
"name": "Shadow", | |
"type": "RECTANGLE", | |
"x": 690, | |
"y": 520, | |
"width": 42, | |
"height": 60, | |
"relativeTransform": [ [ 9.71445146547012e-17, | |
1, | |
690], | |
[ -1, | |
9.71445146547012e-17, | |
520]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.2800000011920929, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.06285715103149414, | |
"g": 0.19428586959838867, | |
"b": 0.5771428346633911 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [ { | |
"type": "LAYER_BLUR", | |
"radius": 40, | |
"visible": true, | |
"boundVariables": {} | |
} | |
], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14972", | |
"name": "Bg Button", | |
"type": "RECTANGLE", | |
"x": 690, | |
"y": 520, | |
"width": 60, | |
"height": 60, | |
"relativeTransform": [ [ 9.71445146547012e-17, | |
1, | |
690], | |
[ -1, | |
9.71445146547012e-17, | |
520]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14973", | |
"name": "Iconly/Light/Swap", | |
"type": "INSTANCE", | |
"x": 732, | |
"y": 502, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.612987636099623e-16, | |
732], | |
[ -1.5550789051716027e-16, | |
-1, | |
502]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "CENTER", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:14973;29221:1713", | |
"name": "Swap", | |
"type": "GROUP", | |
"x": 2.833444356918335, | |
"y": 3.8323333263397217, | |
"width": 18.083778381347656, | |
"height": 16.33244514465332, | |
"relativeTransform": [ [ 1, | |
0, | |
2.833444356918335], | |
[ 0, | |
1, | |
3.8323333263397217]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "CENTER", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:14973;29221:1714", | |
"name": "Stroke 1", | |
"type": "VECTOR", | |
"x": 16.284000158309937, | |
"y": 6.546444416046143, | |
"width": 1.1111111640930176, | |
"height": 13.617777824401855, | |
"relativeTransform": [ [ 1, | |
0, | |
16.284000158309937], | |
[ 0, | |
1, | |
6.546444416046143]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:14973;29221:1715", | |
"name": "Stroke 3", | |
"type": "VECTOR", | |
"x": 12.761666059494019, | |
"y": 16.068111181259155, | |
"width": 8.155555725097656, | |
"height": 4.0966668128967285, | |
"relativeTransform": [ [ 1, | |
0, | |
12.761666059494019], | |
[ 0, | |
1, | |
16.068111181259155]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:14973;29221:1716", | |
"name": "Stroke 5", | |
"type": "VECTOR", | |
"x": 6.355555534362793, | |
"y": 3.832888901233673, | |
"width": 1.1111111640930176, | |
"height": 13.617777824401855, | |
"relativeTransform": [ [ 1, | |
0, | |
6.355555534362793], | |
[ 0, | |
1, | |
3.832888901233673]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:14973;29221:1717", | |
"name": "Stroke 7", | |
"type": "VECTOR", | |
"x": 2.833444356918335, | |
"y": 3.8323333263397217, | |
"width": 8.155555725097656, | |
"height": 4.0966668128967285, | |
"relativeTransform": [ [ 1, | |
0, | |
2.833444356918335], | |
[ 0, | |
1, | |
3.8323333263397217]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:14974", | |
"name": "Pick - Up", | |
"type": "FRAME", | |
"x": 64, | |
"y": 424, | |
"width": 582, | |
"height": 132, | |
"relativeTransform": [ [ 1, | |
0, | |
64], | |
[ 0, | |
1, | |
424]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:14975", | |
"name": "bg", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 0, | |
"width": 582, | |
"height": 136, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14976", | |
"name": "Pick - Up", | |
"type": "FRAME", | |
"x": 48, | |
"y": 24, | |
"width": 92, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
48], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:14977", | |
"name": "mark", | |
"type": "FRAME", | |
"x": 0, | |
"y": 2, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.30000001192092896, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 70, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:14978", | |
"name": "Ellipse 11", | |
"type": "ELLIPSE", | |
"x": 4, | |
"y": 4, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:14979", | |
"name": "Pick - Up", | |
"type": "TEXT", | |
"x": 24, | |
"y": 0, | |
"width": 68, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:14980", | |
"name": "Pick - Up", | |
"type": "FRAME", | |
"x": 48, | |
"y": 60, | |
"width": 486, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
48], | |
[ 0, | |
1, | |
60]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 24, | |
"children": [ { | |
"id": "44:14981", | |
"name": "Locations", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 126, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:14982", | |
"name": "Locations", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 77, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14983", | |
"name": "Select your city", | |
"type": "FRAME", | |
"x": 0, | |
"y": 28, | |
"width": 126, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:14984", | |
"name": "Select your city", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 104, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14985", | |
"name": "vuesax/outline/arrow-down", | |
"type": "INSTANCE", | |
"x": 112, | |
"y": 3, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
112], | |
[ 0, | |
1, | |
3]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:14985;1478:6051", | |
"name": "vuesax/outline/arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:14985;1478:6052", | |
"name": "arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:14985;1478:6053", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9441406726837158, | |
"y": 4.784472465515137, | |
"width": 10.11208438873291, | |
"height": 5.0152082443237305, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9441406726837158], | |
[ 0, | |
1, | |
4.784472465515137]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 0.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:14985;1478:6054", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:14986", | |
"name": "Line 2", | |
"type": "LINE", | |
"x": 150, | |
"y": 0, | |
"width": 48, | |
"height": 0, | |
"relativeTransform": [ [ 6.123234262925839e-17, | |
-1, | |
150], | |
[ 1, | |
6.123234262925839e-17, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.4000000059604645, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.7647058963775635, | |
"g": 0.8313725590705872, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14987", | |
"name": "Date", | |
"type": "FRAME", | |
"x": 174, | |
"y": 0, | |
"width": 134, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
174], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:14988", | |
"name": "Date", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 48, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14989", | |
"name": "Select your date", | |
"type": "FRAME", | |
"x": 0, | |
"y": 28, | |
"width": 134, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:14990", | |
"name": "Select your date", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 112, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14991", | |
"name": "vuesax/outline/arrow-down", | |
"type": "INSTANCE", | |
"x": 120, | |
"y": 3, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
120], | |
[ 0, | |
1, | |
3]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:14991;1478:6051", | |
"name": "vuesax/outline/arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:14991;1478:6052", | |
"name": "arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:14991;1478:6053", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9441406726837158, | |
"y": 4.784472465515137, | |
"width": 10.11208438873291, | |
"height": 5.0152082443237305, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9441406726837158], | |
[ 0, | |
1, | |
4.784472465515137]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 0.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:14991;1478:6054", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:14992", | |
"name": "Line 1", | |
"type": "LINE", | |
"x": 332, | |
"y": 0, | |
"width": 48, | |
"height": 0, | |
"relativeTransform": [ [ 6.123234262925839e-17, | |
-1, | |
332], | |
[ 1, | |
6.123234262925839e-17, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.4000000059604645, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.7647058963775635, | |
"g": 0.8313725590705872, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14993", | |
"name": "Time", | |
"type": "FRAME", | |
"x": 356, | |
"y": 0, | |
"width": 130, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
356], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:14994", | |
"name": "Time", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 48, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14995", | |
"name": "Select your time", | |
"type": "FRAME", | |
"x": 0, | |
"y": 28, | |
"width": 130, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:14996", | |
"name": "Select your time", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 108, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:14997", | |
"name": "vuesax/outline/arrow-down", | |
"type": "INSTANCE", | |
"x": 116, | |
"y": 3, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
116], | |
[ 0, | |
1, | |
3]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:14997;1478:6051", | |
"name": "vuesax/outline/arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:14997;1478:6052", | |
"name": "arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:14997;1478:6053", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9441406726837158, | |
"y": 4.784472465515137, | |
"width": 10.11208438873291, | |
"height": 5.0152082443237305, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9441406726837158], | |
[ 0, | |
1, | |
4.784472465515137]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 0.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:14997;1478:6054", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:14998", | |
"name": "Drop - Off", | |
"type": "FRAME", | |
"x": 794, | |
"y": 424, | |
"width": 582, | |
"height": 132, | |
"relativeTransform": [ [ 1, | |
0, | |
794], | |
[ 0, | |
1, | |
424]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:14999", | |
"name": "bg", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 0, | |
"width": 582, | |
"height": 136, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15000", | |
"name": "Drop - Off", | |
"type": "FRAME", | |
"x": 48, | |
"y": 24, | |
"width": 104, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
48], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15001", | |
"name": "mark", | |
"type": "FRAME", | |
"x": 0, | |
"y": 2, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.30000001192092896, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3607843220233917, | |
"g": 0.686274528503418, | |
"b": 0.9882352948188782 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 70, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15002", | |
"name": "Ellipse 11", | |
"type": "ELLIPSE", | |
"x": 4, | |
"y": 4, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3294117748737335, | |
"g": 0.6509804129600525, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15003", | |
"name": "Drop - Off", | |
"type": "TEXT", | |
"x": 24, | |
"y": 0, | |
"width": 80, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15004", | |
"name": "Drop - Off", | |
"type": "FRAME", | |
"x": 48, | |
"y": 60, | |
"width": 486, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
48], | |
[ 0, | |
1, | |
60]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 24, | |
"children": [ { | |
"id": "44:15005", | |
"name": "Locations", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 126, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15006", | |
"name": "Locations", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 77, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15007", | |
"name": "Select your city", | |
"type": "FRAME", | |
"x": 0, | |
"y": 28, | |
"width": 126, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15008", | |
"name": "Select your city", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 104, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15009", | |
"name": "vuesax/outline/arrow-down", | |
"type": "INSTANCE", | |
"x": 112, | |
"y": 3, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
112], | |
[ 0, | |
1, | |
3]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15009;1478:6051", | |
"name": "vuesax/outline/arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15009;1478:6052", | |
"name": "arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15009;1478:6053", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9441406726837158, | |
"y": 4.784472465515137, | |
"width": 10.11208438873291, | |
"height": 5.0152082443237305, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9441406726837158], | |
[ 0, | |
1, | |
4.784472465515137]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 0.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15009;1478:6054", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15010", | |
"name": "Line 2", | |
"type": "LINE", | |
"x": 150, | |
"y": 0, | |
"width": 48, | |
"height": 0, | |
"relativeTransform": [ [ 6.123234262925839e-17, | |
-1, | |
150], | |
[ 1, | |
6.123234262925839e-17, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.4000000059604645, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.7647058963775635, | |
"g": 0.8313725590705872, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15011", | |
"name": "Date", | |
"type": "FRAME", | |
"x": 174, | |
"y": 0, | |
"width": 134, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
174], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15012", | |
"name": "Date", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 48, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15013", | |
"name": "Select your date", | |
"type": "FRAME", | |
"x": 0, | |
"y": 28, | |
"width": 134, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15014", | |
"name": "Select your date", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 112, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15015", | |
"name": "vuesax/outline/arrow-down", | |
"type": "INSTANCE", | |
"x": 120, | |
"y": 3, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
120], | |
[ 0, | |
1, | |
3]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15015;1478:6051", | |
"name": "vuesax/outline/arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15015;1478:6052", | |
"name": "arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15015;1478:6053", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9441406726837158, | |
"y": 4.784472465515137, | |
"width": 10.11208438873291, | |
"height": 5.0152082443237305, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9441406726837158], | |
[ 0, | |
1, | |
4.784472465515137]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 0.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15015;1478:6054", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15016", | |
"name": "Line 1", | |
"type": "LINE", | |
"x": 332, | |
"y": 0, | |
"width": 48, | |
"height": 0, | |
"relativeTransform": [ [ 6.123234262925839e-17, | |
-1, | |
332], | |
[ 1, | |
6.123234262925839e-17, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.4000000059604645, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.7647058963775635, | |
"g": 0.8313725590705872, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15017", | |
"name": "Time", | |
"type": "FRAME", | |
"x": 356, | |
"y": 0, | |
"width": 130, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
356], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15018", | |
"name": "Time", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 48, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15019", | |
"name": "Select your time", | |
"type": "FRAME", | |
"x": 0, | |
"y": 28, | |
"width": 130, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15020", | |
"name": "Select your time", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 108, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15021", | |
"name": "vuesax/outline/arrow-down", | |
"type": "INSTANCE", | |
"x": 116, | |
"y": 3, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
116], | |
[ 0, | |
1, | |
3]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15021;1478:6051", | |
"name": "vuesax/outline/arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15021;1478:6052", | |
"name": "arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15021;1478:6053", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9441406726837158, | |
"y": 4.784472465515137, | |
"width": 10.11208438873291, | |
"height": 5.0152082443237305, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9441406726837158], | |
[ 0, | |
1, | |
4.784472465515137]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 0.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15021;1478:6054", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 14, | |
"height": 14, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15022", | |
"name": "Catalogue Car", | |
"type": "FRAME", | |
"x": 64, | |
"y": 592, | |
"width": 1312, | |
"height": 1356, | |
"relativeTransform": [ [ 1, | |
0, | |
64], | |
[ 0, | |
1, | |
592]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 32, | |
"children": [ { | |
"id": "44:15023", | |
"name": "Popular Car Rent", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 1312, | |
"height": 452, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 20, | |
"children": [ { | |
"id": "44:15024", | |
"name": "Popular", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 1312, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 1076, | |
"children": [ { | |
"id": "44:15025", | |
"name": "Popular", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 132, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15026", | |
"name": "Popular Car", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 92, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15027", | |
"name": "View", | |
"type": "FRAME", | |
"x": 1208, | |
"y": 0, | |
"width": 104, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
1208], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15028", | |
"name": "View All", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 64, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15029", | |
"name": "Popular Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 64, | |
"width": 1312, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
64]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 32, | |
"children": [ { | |
"id": "44:15030", | |
"name": "Catalog 1", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 304, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15031", | |
"name": "Car Name", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 128, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15032", | |
"name": "Koenigsegg", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15033", | |
"name": "Sport", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15034", | |
"name": "Like", | |
"type": "INSTANCE", | |
"x": 256, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
256], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15034;1175:39062", | |
"name": "vuesax/bold/heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15034;1175:39063", | |
"name": "heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15034;1175:39064", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 3.0999999046325684, | |
"width": 20, | |
"height": 17.799999237060547, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
3.0999999046325684]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.9289582967758179, | |
"g": 0.2460416555404663, | |
"b": 0.2460418939590454 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15034;1175:39065", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15035", | |
"name": "Price", | |
"type": "FRAME", | |
"x": 24, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15036", | |
"name": "$99.00/ day", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15037", | |
"name": "Button Rental", | |
"type": "FRAME", | |
"x": 164, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
164], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15038", | |
"name": "Rent Now", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15039", | |
"name": "Spesification", | |
"type": "FRAME", | |
"x": 24, | |
"y": 272, | |
"width": 256, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
272]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:15040", | |
"name": "Gasoline", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 58, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15041", | |
"name": "vuesax/bold/gas-station", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15041;1171:38914", | |
"name": "vuesax/bold/gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15041;1171:38915", | |
"name": "gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15041;1171:38916", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15041;1171:38917", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.25, | |
"y": 2, | |
"width": 21.5, | |
"height": 20.75, | |
"relativeTransform": [ [ 1, | |
0, | |
1.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15042", | |
"name": "90L", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 28, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15043", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 74, | |
"y": 0, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
74], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15044", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15045", | |
"name": "Circle 4", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 20, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15046", | |
"name": "Circle 3", | |
"type": "RECTANGLE", | |
"x": 4, | |
"y": 4, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15047", | |
"name": "Circle 2", | |
"type": "VECTOR", | |
"x": 6, | |
"y": 6, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
6], | |
[ 0, | |
1, | |
6]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15048", | |
"name": "Circle 1", | |
"type": "RECTANGLE", | |
"x": 8, | |
"y": 8, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
8], | |
[ 0, | |
1, | |
8]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15049", | |
"name": "Rectangle 3", | |
"type": "RECTANGLE", | |
"x": 11, | |
"y": 17, | |
"width": 2, | |
"height": 4, | |
"relativeTransform": [ [ 1, | |
0, | |
11], | |
[ 0, | |
1, | |
17]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15050", | |
"name": "Rectangle 2", | |
"type": "RECTANGLE", | |
"x": 17, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
17], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15051", | |
"name": "Rectangle 1", | |
"type": "RECTANGLE", | |
"x": 3, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
3], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15052", | |
"name": "Manual", | |
"type": "TEXT", | |
"x": 28, | |
"y": 0, | |
"width": 48, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
28], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15053", | |
"name": "Capacity", | |
"type": "FRAME", | |
"x": 166, | |
"y": 0, | |
"width": 90, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
166], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15054", | |
"name": "vuesax/bold/profile-2user", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15054;1171:38906", | |
"name": "vuesax/bold/profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15054;1171:38907", | |
"name": "profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15054;1171:38908", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 4.25, | |
"y": 2, | |
"width": 9.5, | |
"height": 9.489999771118164, | |
"relativeTransform": [ [ 1, | |
0, | |
4.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15054;1171:38909", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9600000381469727, | |
"y": 12.754999160766602, | |
"width": 14.080000877380371, | |
"height": 9.245000839233398, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9600000381469727], | |
[ 0, | |
1, | |
12.754999160766602]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15054;1171:38910", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 14.109999656677246, | |
"y": 4.0565409660339355, | |
"width": 5.892612934112549, | |
"height": 7.178700923919678, | |
"relativeTransform": [ [ 1, | |
0, | |
14.109999656677246], | |
[ 0, | |
1, | |
4.0565409660339355]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15054;1171:38911", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 13.989999771118164, | |
"y": 12.499604225158691, | |
"width": 8.010906219482422, | |
"height": 7.252723693847656, | |
"relativeTransform": [ [ 1, | |
0, | |
13.989999771118164], | |
[ 0, | |
1, | |
12.499604225158691]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15054;1171:38912", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15055", | |
"name": "2 People", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 60, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15056", | |
"name": "car", | |
"type": "RECTANGLE", | |
"x": 36, | |
"y": 136, | |
"width": 232, | |
"height": 72, | |
"relativeTransform": [ [ 1, | |
0, | |
36], | |
[ 0, | |
1, | |
136]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 0.914149284362793, | |
0, | |
0.06435074657201767], | |
[ 0, | |
0.5799999833106995, | |
0.2800000011920929]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": -0.16666735708713531, | |
"contrast": 0, | |
"saturation": 0, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": -0.16666735708713531, | |
"shadows": 1 | |
} | |
, | |
"imageHash": "2385cc01da9bb791587b8022c475d39822c50c17" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15057", | |
"name": "shadow", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 167, | |
"width": 304, | |
"height": 68, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
167]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "GRADIENT_LINEAR", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"gradientStops": [ { | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 0 | |
} | |
, | |
"position": 0, | |
"boundVariables": {} | |
} | |
, | |
{ | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 1 | |
} | |
, | |
"position": 1, | |
"boundVariables": {} | |
} | |
], | |
"gradientTransform": [ [ 6.123234262925839e-17, | |
1, | |
0], | |
[ -1, | |
6.123234262925839e-17, | |
1]] | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15058", | |
"name": "Catalog 2", | |
"type": "FRAME", | |
"x": 336, | |
"y": 0, | |
"width": 304, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
336], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15059", | |
"name": "Car Name", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 128, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15060", | |
"name": "Nissan GT - R", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15061", | |
"name": "Sport", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15062", | |
"name": "Button Rental", | |
"type": "FRAME", | |
"x": 164, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
164], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15063", | |
"name": "Rent Now", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15064", | |
"name": "Spesification", | |
"type": "FRAME", | |
"x": 24, | |
"y": 272, | |
"width": 256, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
272]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:15065", | |
"name": "Gasoline", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 58, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15066", | |
"name": "vuesax/bold/gas-station", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15066;1171:38914", | |
"name": "vuesax/bold/gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15066;1171:38915", | |
"name": "gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15066;1171:38916", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15066;1171:38917", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.25, | |
"y": 2, | |
"width": 21.5, | |
"height": 20.75, | |
"relativeTransform": [ [ 1, | |
0, | |
1.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15067", | |
"name": "80L", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 28, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15068", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 74, | |
"y": 0, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
74], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15069", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15070", | |
"name": "Circle 4", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 20, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15071", | |
"name": "Circle 3", | |
"type": "RECTANGLE", | |
"x": 4, | |
"y": 4, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15072", | |
"name": "Circle 2", | |
"type": "VECTOR", | |
"x": 6, | |
"y": 6, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
6], | |
[ 0, | |
1, | |
6]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15073", | |
"name": "Circle 1", | |
"type": "RECTANGLE", | |
"x": 8, | |
"y": 8, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
8], | |
[ 0, | |
1, | |
8]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15074", | |
"name": "Rectangle 3", | |
"type": "RECTANGLE", | |
"x": 11, | |
"y": 17, | |
"width": 2, | |
"height": 4, | |
"relativeTransform": [ [ 1, | |
0, | |
11], | |
[ 0, | |
1, | |
17]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15075", | |
"name": "Rectangle 2", | |
"type": "RECTANGLE", | |
"x": 17, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
17], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15076", | |
"name": "Rectangle 1", | |
"type": "RECTANGLE", | |
"x": 3, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
3], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15077", | |
"name": "Manual", | |
"type": "TEXT", | |
"x": 28, | |
"y": 0, | |
"width": 48, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
28], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15078", | |
"name": "Capacity", | |
"type": "FRAME", | |
"x": 166, | |
"y": 0, | |
"width": 90, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
166], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15079", | |
"name": "vuesax/bold/profile-2user", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15079;1171:38906", | |
"name": "vuesax/bold/profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15079;1171:38907", | |
"name": "profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15079;1171:38908", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 4.25, | |
"y": 2, | |
"width": 9.5, | |
"height": 9.489999771118164, | |
"relativeTransform": [ [ 1, | |
0, | |
4.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15079;1171:38909", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9600000381469727, | |
"y": 12.754999160766602, | |
"width": 14.080000877380371, | |
"height": 9.245000839233398, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9600000381469727], | |
[ 0, | |
1, | |
12.754999160766602]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15079;1171:38910", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 14.109999656677246, | |
"y": 4.0565409660339355, | |
"width": 5.892612934112549, | |
"height": 7.178700923919678, | |
"relativeTransform": [ [ 1, | |
0, | |
14.109999656677246], | |
[ 0, | |
1, | |
4.0565409660339355]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15079;1171:38911", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 13.989999771118164, | |
"y": 12.499604225158691, | |
"width": 8.010906219482422, | |
"height": 7.252723693847656, | |
"relativeTransform": [ [ 1, | |
0, | |
13.989999771118164], | |
[ 0, | |
1, | |
12.499604225158691]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15079;1171:38912", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15080", | |
"name": "2 People", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 60, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15081", | |
"name": "Like", | |
"type": "INSTANCE", | |
"x": 256, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
256], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15081;1175:39057", | |
"name": "vuesax/linear/heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15081;1175:39058", | |
"name": "heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15081;1175:39059", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 3.0999999046325684, | |
"width": 20, | |
"height": 17.799999237060547, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
3.0999999046325684]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15081;1175:39060", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15082", | |
"name": "price", | |
"type": "FRAME", | |
"x": 24, | |
"y": 316, | |
"width": 128, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
316]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15083", | |
"name": "$80.00/ day", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15084", | |
"name": "$100.00", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15085", | |
"name": "car", | |
"type": "RECTANGLE", | |
"x": 254, | |
"y": 138, | |
"width": 204, | |
"height": 64, | |
"relativeTransform": [ [ -1, | |
0, | |
254], | |
[ 0, | |
1, | |
138]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
0.42487043142318726, | |
0.31865283846855164]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": 0, | |
"contrast": 0, | |
"saturation": 0, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": 0, | |
"shadows": 0 | |
} | |
, | |
"imageHash": "702f356e48fe531e6fd2626c5d1041dbfcde3341" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15086", | |
"name": "shadow", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 167, | |
"width": 304, | |
"height": 68, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
167]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "GRADIENT_LINEAR", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"gradientStops": [ { | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 0 | |
} | |
, | |
"position": 0, | |
"boundVariables": {} | |
} | |
, | |
{ | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 1 | |
} | |
, | |
"position": 1, | |
"boundVariables": {} | |
} | |
], | |
"gradientTransform": [ [ 6.123234262925839e-17, | |
1, | |
0], | |
[ -1, | |
6.123234262925839e-17, | |
1]] | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15087", | |
"name": "Catalog 3", | |
"type": "FRAME", | |
"x": 672, | |
"y": 0, | |
"width": 304, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
672], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15088", | |
"name": "Car Name", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 128, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15089", | |
"name": "Rolls - Royce", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15090", | |
"name": "Sedan", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15091", | |
"name": "vuesax/bold/heart", | |
"type": "INSTANCE", | |
"x": 256, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
256], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15091;1175:39062", | |
"name": "vuesax/bold/heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15091;1175:39063", | |
"name": "heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15091;1175:39064", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 3.0999999046325684, | |
"width": 20, | |
"height": 17.799999237060547, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
3.0999999046325684]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.9289582967758179, | |
"g": 0.2460416555404663, | |
"b": 0.2460418939590454 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15091;1175:39065", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15092", | |
"name": "price", | |
"type": "FRAME", | |
"x": 24, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15093", | |
"name": "$96.00/ day", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15094", | |
"name": "Button Rental", | |
"type": "FRAME", | |
"x": 164, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
164], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15095", | |
"name": "Rent Now", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15096", | |
"name": "Spesification", | |
"type": "FRAME", | |
"x": 24, | |
"y": 272, | |
"width": 256, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
272]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:15097", | |
"name": "Gasoline", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 58, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15098", | |
"name": "vuesax/bold/gas-station", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15098;1171:38914", | |
"name": "vuesax/bold/gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15098;1171:38915", | |
"name": "gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15098;1171:38916", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15098;1171:38917", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.25, | |
"y": 2, | |
"width": 21.5, | |
"height": 20.75, | |
"relativeTransform": [ [ 1, | |
0, | |
1.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15099", | |
"name": "70L", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 28, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15100", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 74, | |
"y": 0, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
74], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15101", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15102", | |
"name": "Circle 4", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 20, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15103", | |
"name": "Circle 3", | |
"type": "RECTANGLE", | |
"x": 4, | |
"y": 4, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15104", | |
"name": "Circle 2", | |
"type": "VECTOR", | |
"x": 6, | |
"y": 6, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
6], | |
[ 0, | |
1, | |
6]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15105", | |
"name": "Circle 1", | |
"type": "RECTANGLE", | |
"x": 8, | |
"y": 8, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
8], | |
[ 0, | |
1, | |
8]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15106", | |
"name": "Rectangle 3", | |
"type": "RECTANGLE", | |
"x": 11, | |
"y": 17, | |
"width": 2, | |
"height": 4, | |
"relativeTransform": [ [ 1, | |
0, | |
11], | |
[ 0, | |
1, | |
17]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15107", | |
"name": "Rectangle 2", | |
"type": "RECTANGLE", | |
"x": 17, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
17], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15108", | |
"name": "Rectangle 1", | |
"type": "RECTANGLE", | |
"x": 3, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
3], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15109", | |
"name": "Manual", | |
"type": "TEXT", | |
"x": 28, | |
"y": 0, | |
"width": 48, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
28], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15110", | |
"name": "Capacity", | |
"type": "FRAME", | |
"x": 166, | |
"y": 0, | |
"width": 90, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
166], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15111", | |
"name": "vuesax/bold/profile-2user", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15111;1171:38906", | |
"name": "vuesax/bold/profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15111;1171:38907", | |
"name": "profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15111;1171:38908", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 4.25, | |
"y": 2, | |
"width": 9.5, | |
"height": 9.489999771118164, | |
"relativeTransform": [ [ 1, | |
0, | |
4.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15111;1171:38909", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9600000381469727, | |
"y": 12.754999160766602, | |
"width": 14.080000877380371, | |
"height": 9.245000839233398, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9600000381469727], | |
[ 0, | |
1, | |
12.754999160766602]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15111;1171:38910", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 14.109999656677246, | |
"y": 4.0565409660339355, | |
"width": 5.892612934112549, | |
"height": 7.178700923919678, | |
"relativeTransform": [ [ 1, | |
0, | |
14.109999656677246], | |
[ 0, | |
1, | |
4.0565409660339355]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15111;1171:38911", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 13.989999771118164, | |
"y": 12.499604225158691, | |
"width": 8.010906219482422, | |
"height": 7.252723693847656, | |
"relativeTransform": [ [ 1, | |
0, | |
13.989999771118164], | |
[ 0, | |
1, | |
12.499604225158691]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15111;1171:38912", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15112", | |
"name": "4 People", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 60, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15113", | |
"name": "Car", | |
"type": "RECTANGLE", | |
"x": 262, | |
"y": 136, | |
"width": 220, | |
"height": 68, | |
"relativeTransform": [ [ -1, | |
0, | |
262], | |
[ 0, | |
1, | |
136]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "FILL", | |
"imageTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"scalingFactor": 0.5, | |
"rotation": 0, | |
"filters": { | |
"exposure": 0, | |
"contrast": 0, | |
"saturation": 0, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": 0, | |
"shadows": 0 | |
} | |
, | |
"imageHash": "2e45bdb64d6f5df6dab1d18d948223ba47972f21" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15114", | |
"name": "shadow", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 167, | |
"width": 304, | |
"height": 68, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
167]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "GRADIENT_LINEAR", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"gradientStops": [ { | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 0 | |
} | |
, | |
"position": 0, | |
"boundVariables": {} | |
} | |
, | |
{ | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 1 | |
} | |
, | |
"position": 1, | |
"boundVariables": {} | |
} | |
], | |
"gradientTransform": [ [ 6.123234262925839e-17, | |
1, | |
0], | |
[ -1, | |
6.123234262925839e-17, | |
1]] | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15115", | |
"name": "Catalog 4", | |
"type": "FRAME", | |
"x": 1008, | |
"y": 0, | |
"width": 304, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
1008], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15116", | |
"name": "Car Name", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 128, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15117", | |
"name": "Nissan GT - R", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15118", | |
"name": "Sport", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15119", | |
"name": "Button Rental", | |
"type": "FRAME", | |
"x": 164, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
164], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15120", | |
"name": "Rent Now", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15121", | |
"name": "Spesification", | |
"type": "FRAME", | |
"x": 24, | |
"y": 272, | |
"width": 256, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
272]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:15122", | |
"name": "Gasoline", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 58, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15123", | |
"name": "vuesax/bold/gas-station", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15123;1171:38914", | |
"name": "vuesax/bold/gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15123;1171:38915", | |
"name": "gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15123;1171:38916", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15123;1171:38917", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.25, | |
"y": 2, | |
"width": 21.5, | |
"height": 20.75, | |
"relativeTransform": [ [ 1, | |
0, | |
1.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15124", | |
"name": "80L", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 28, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15125", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 74, | |
"y": 0, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
74], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15126", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15127", | |
"name": "Circle 4", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 20, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15128", | |
"name": "Circle 3", | |
"type": "RECTANGLE", | |
"x": 4, | |
"y": 4, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15129", | |
"name": "Circle 2", | |
"type": "VECTOR", | |
"x": 6, | |
"y": 6, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
6], | |
[ 0, | |
1, | |
6]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15130", | |
"name": "Circle 1", | |
"type": "RECTANGLE", | |
"x": 8, | |
"y": 8, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
8], | |
[ 0, | |
1, | |
8]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15131", | |
"name": "Rectangle 3", | |
"type": "RECTANGLE", | |
"x": 11, | |
"y": 17, | |
"width": 2, | |
"height": 4, | |
"relativeTransform": [ [ 1, | |
0, | |
11], | |
[ 0, | |
1, | |
17]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15132", | |
"name": "Rectangle 2", | |
"type": "RECTANGLE", | |
"x": 17, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
17], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15133", | |
"name": "Rectangle 1", | |
"type": "RECTANGLE", | |
"x": 3, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
3], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15134", | |
"name": "Manual", | |
"type": "TEXT", | |
"x": 28, | |
"y": 0, | |
"width": 48, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
28], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15135", | |
"name": "Capacity", | |
"type": "FRAME", | |
"x": 166, | |
"y": 0, | |
"width": 90, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
166], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15136", | |
"name": "vuesax/bold/profile-2user", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15136;1171:38906", | |
"name": "vuesax/bold/profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15136;1171:38907", | |
"name": "profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15136;1171:38908", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 4.25, | |
"y": 2, | |
"width": 9.5, | |
"height": 9.489999771118164, | |
"relativeTransform": [ [ 1, | |
0, | |
4.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15136;1171:38909", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9600000381469727, | |
"y": 12.754999160766602, | |
"width": 14.080000877380371, | |
"height": 9.245000839233398, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9600000381469727], | |
[ 0, | |
1, | |
12.754999160766602]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15136;1171:38910", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 14.109999656677246, | |
"y": 4.0565409660339355, | |
"width": 5.892612934112549, | |
"height": 7.178700923919678, | |
"relativeTransform": [ [ 1, | |
0, | |
14.109999656677246], | |
[ 0, | |
1, | |
4.0565409660339355]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15136;1171:38911", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 13.989999771118164, | |
"y": 12.499604225158691, | |
"width": 8.010906219482422, | |
"height": 7.252723693847656, | |
"relativeTransform": [ [ 1, | |
0, | |
13.989999771118164], | |
[ 0, | |
1, | |
12.499604225158691]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15136;1171:38912", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15137", | |
"name": "2 People", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 60, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15138", | |
"name": "Car", | |
"type": "RECTANGLE", | |
"x": 254, | |
"y": 138, | |
"width": 204, | |
"height": 64, | |
"relativeTransform": [ [ -1, | |
0, | |
254], | |
[ 0, | |
1, | |
138]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
0.42487043142318726, | |
0.31865283846855164]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": 0, | |
"contrast": 1, | |
"saturation": -1, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": -1, | |
"shadows": -1 | |
} | |
, | |
"imageHash": "702f356e48fe531e6fd2626c5d1041dbfcde3341" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15139", | |
"name": "vuesax/linear/heart", | |
"type": "INSTANCE", | |
"x": 256, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
256], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15139;1175:39057", | |
"name": "vuesax/linear/heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15139;1175:39058", | |
"name": "heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15139;1175:39059", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 3.0999999046325684, | |
"width": 20, | |
"height": 17.799999237060547, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
3.0999999046325684]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15139;1175:39060", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15140", | |
"name": "price", | |
"type": "FRAME", | |
"x": 24, | |
"y": 316, | |
"width": 128, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
316]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15141", | |
"name": "$80.00/ day", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15142", | |
"name": "$100.00", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15143", | |
"name": "shadow", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 167, | |
"width": 304, | |
"height": 68, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
167]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "GRADIENT_LINEAR", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"gradientStops": [ { | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 0 | |
} | |
, | |
"position": 0, | |
"boundVariables": {} | |
} | |
, | |
{ | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 1 | |
} | |
, | |
"position": 1, | |
"boundVariables": {} | |
} | |
], | |
"gradientTransform": [ [ 6.123234262925839e-17, | |
1, | |
0], | |
[ -1, | |
6.123234262925839e-17, | |
1]] | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15144", | |
"name": "Recomendation Car Rent", | |
"type": "FRAME", | |
"x": 0, | |
"y": 484, | |
"width": 1312, | |
"height": 872, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
484]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 20, | |
"children": [ { | |
"id": "44:15145", | |
"name": "Recomendation", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 196, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15146", | |
"name": "Recomendation Car", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 156, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15147", | |
"name": "Recomendation Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 64, | |
"width": 1312, | |
"height": 808, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
64]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 32, | |
"children": [ { | |
"id": "44:15148", | |
"name": "Recomendation 1", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 1312, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 32, | |
"children": [ { | |
"id": "44:15149", | |
"name": "Catalog 1", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 304, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15150", | |
"name": "Button Rental", | |
"type": "FRAME", | |
"x": 164, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
164], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15151", | |
"name": "Rent Now", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15152", | |
"name": "Spesification", | |
"type": "FRAME", | |
"x": 24, | |
"y": 272, | |
"width": 256, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
272]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:15153", | |
"name": "Gasoline", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 58, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15154", | |
"name": "vuesax/bold/gas-station", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15154;1171:38914", | |
"name": "vuesax/bold/gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15154;1171:38915", | |
"name": "gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15154;1171:38916", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15154;1171:38917", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.25, | |
"y": 2, | |
"width": 21.5, | |
"height": 20.75, | |
"relativeTransform": [ [ 1, | |
0, | |
1.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15155", | |
"name": "70L", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 28, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15156", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 74, | |
"y": 0, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
74], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15157", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15158", | |
"name": "Circle 4", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 20, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15159", | |
"name": "Circle 3", | |
"type": "RECTANGLE", | |
"x": 4, | |
"y": 4, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15160", | |
"name": "Circle 2", | |
"type": "VECTOR", | |
"x": 6, | |
"y": 6, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
6], | |
[ 0, | |
1, | |
6]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15161", | |
"name": "Circle 1", | |
"type": "RECTANGLE", | |
"x": 8, | |
"y": 8, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
8], | |
[ 0, | |
1, | |
8]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15162", | |
"name": "Rectangle 3", | |
"type": "RECTANGLE", | |
"x": 11, | |
"y": 17, | |
"width": 2, | |
"height": 4, | |
"relativeTransform": [ [ 1, | |
0, | |
11], | |
[ 0, | |
1, | |
17]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15163", | |
"name": "Rectangle 2", | |
"type": "RECTANGLE", | |
"x": 17, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
17], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15164", | |
"name": "Rectangle 1", | |
"type": "RECTANGLE", | |
"x": 3, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
3], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15165", | |
"name": "Manual", | |
"type": "TEXT", | |
"x": 28, | |
"y": 0, | |
"width": 48, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
28], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15166", | |
"name": "Capacity", | |
"type": "FRAME", | |
"x": 166, | |
"y": 0, | |
"width": 90, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
166], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15167", | |
"name": "vuesax/bold/profile-2user", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15167;1171:38906", | |
"name": "vuesax/bold/profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15167;1171:38907", | |
"name": "profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15167;1171:38908", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 4.25, | |
"y": 2, | |
"width": 9.5, | |
"height": 9.489999771118164, | |
"relativeTransform": [ [ 1, | |
0, | |
4.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15167;1171:38909", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9600000381469727, | |
"y": 12.754999160766602, | |
"width": 14.080000877380371, | |
"height": 9.245000839233398, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9600000381469727], | |
[ 0, | |
1, | |
12.754999160766602]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15167;1171:38910", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 14.109999656677246, | |
"y": 4.0565409660339355, | |
"width": 5.892612934112549, | |
"height": 7.178700923919678, | |
"relativeTransform": [ [ 1, | |
0, | |
14.109999656677246], | |
[ 0, | |
1, | |
4.0565409660339355]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15167;1171:38911", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 13.989999771118164, | |
"y": 12.499604225158691, | |
"width": 8.010906219482422, | |
"height": 7.252723693847656, | |
"relativeTransform": [ [ 1, | |
0, | |
13.989999771118164], | |
[ 0, | |
1, | |
12.499604225158691]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15167;1171:38912", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15168", | |
"name": "6 People", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 60, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15169", | |
"name": "vuesax/linear/heart", | |
"type": "INSTANCE", | |
"x": 256, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
256], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15169;1175:39057", | |
"name": "vuesax/linear/heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15169;1175:39058", | |
"name": "heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15169;1175:39059", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 3.0999999046325684, | |
"width": 20, | |
"height": 17.799999237060547, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
3.0999999046325684]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15169;1175:39060", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15170", | |
"name": "Car Name", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 128, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15171", | |
"name": "All New Rush", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15172", | |
"name": "SUV", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15173", | |
"name": "Car", | |
"type": "RECTANGLE", | |
"x": 40, | |
"y": 122, | |
"width": 224, | |
"height": 100, | |
"relativeTransform": [ [ 1, | |
0, | |
40], | |
[ 0, | |
1, | |
122]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 0.9999998807907104, | |
0, | |
0], | |
[ 0, | |
0.559999942779541, | |
0.22500000894069672]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": -0.14971821010112762, | |
"contrast": -1, | |
"saturation": -0.4830508530139923, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": 0, | |
"shadows": 0 | |
} | |
, | |
"imageHash": "509322661844e6b8d2bc7a68f501d79e35f5f4ab" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15174", | |
"name": "price", | |
"type": "FRAME", | |
"x": 24, | |
"y": 316, | |
"width": 128, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
316]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15175", | |
"name": "$72.00/ day", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15176", | |
"name": "$80.00", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15177", | |
"name": "shadow", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 167, | |
"width": 304, | |
"height": 68, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
167]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "GRADIENT_LINEAR", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"gradientStops": [ { | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 0 | |
} | |
, | |
"position": 0, | |
"boundVariables": {} | |
} | |
, | |
{ | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 1 | |
} | |
, | |
"position": 1, | |
"boundVariables": {} | |
} | |
], | |
"gradientTransform": [ [ 6.123234262925839e-17, | |
1, | |
0], | |
[ -1, | |
6.123234262925839e-17, | |
1]] | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15178", | |
"name": "Catalog 2", | |
"type": "FRAME", | |
"x": 336, | |
"y": 0, | |
"width": 304, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
336], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15179", | |
"name": "Button Rental", | |
"type": "FRAME", | |
"x": 164, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
164], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15180", | |
"name": "Rent Now", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15181", | |
"name": "Spesification", | |
"type": "FRAME", | |
"x": 24, | |
"y": 272, | |
"width": 256, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
272]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:15182", | |
"name": "Gasoline", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 58, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15183", | |
"name": "vuesax/bold/gas-station", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15183;1171:38914", | |
"name": "vuesax/bold/gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15183;1171:38915", | |
"name": "gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15183;1171:38916", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15183;1171:38917", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.25, | |
"y": 2, | |
"width": 21.5, | |
"height": 20.75, | |
"relativeTransform": [ [ 1, | |
0, | |
1.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15184", | |
"name": "80L", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 28, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15185", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 74, | |
"y": 0, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
74], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15186", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15187", | |
"name": "Circle 4", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 20, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15188", | |
"name": "Circle 3", | |
"type": "RECTANGLE", | |
"x": 4, | |
"y": 4, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15189", | |
"name": "Circle 2", | |
"type": "VECTOR", | |
"x": 6, | |
"y": 6, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
6], | |
[ 0, | |
1, | |
6]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15190", | |
"name": "Circle 1", | |
"type": "RECTANGLE", | |
"x": 8, | |
"y": 8, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
8], | |
[ 0, | |
1, | |
8]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15191", | |
"name": "Rectangle 3", | |
"type": "RECTANGLE", | |
"x": 11, | |
"y": 17, | |
"width": 2, | |
"height": 4, | |
"relativeTransform": [ [ 1, | |
0, | |
11], | |
[ 0, | |
1, | |
17]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15192", | |
"name": "Rectangle 2", | |
"type": "RECTANGLE", | |
"x": 17, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
17], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15193", | |
"name": "Rectangle 1", | |
"type": "RECTANGLE", | |
"x": 3, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
3], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15194", | |
"name": "Manual", | |
"type": "TEXT", | |
"x": 28, | |
"y": 0, | |
"width": 48, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
28], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15195", | |
"name": "Capacity", | |
"type": "FRAME", | |
"x": 166, | |
"y": 0, | |
"width": 90, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
166], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15196", | |
"name": "vuesax/bold/profile-2user", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15196;1171:38906", | |
"name": "vuesax/bold/profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15196;1171:38907", | |
"name": "profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15196;1171:38908", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 4.25, | |
"y": 2, | |
"width": 9.5, | |
"height": 9.489999771118164, | |
"relativeTransform": [ [ 1, | |
0, | |
4.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15196;1171:38909", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9600000381469727, | |
"y": 12.754999160766602, | |
"width": 14.080000877380371, | |
"height": 9.245000839233398, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9600000381469727], | |
[ 0, | |
1, | |
12.754999160766602]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15196;1171:38910", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 14.109999656677246, | |
"y": 4.0565409660339355, | |
"width": 5.892612934112549, | |
"height": 7.178700923919678, | |
"relativeTransform": [ [ 1, | |
0, | |
14.109999656677246], | |
[ 0, | |
1, | |
4.0565409660339355]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15196;1171:38911", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 13.989999771118164, | |
"y": 12.499604225158691, | |
"width": 8.010906219482422, | |
"height": 7.252723693847656, | |
"relativeTransform": [ [ 1, | |
0, | |
13.989999771118164], | |
[ 0, | |
1, | |
12.499604225158691]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15196;1171:38912", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15197", | |
"name": "6 People", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 60, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15198", | |
"name": "vuesax/bold/heart", | |
"type": "INSTANCE", | |
"x": 256, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
256], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15198;1175:39062", | |
"name": "vuesax/bold/heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15198;1175:39063", | |
"name": "heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15198;1175:39064", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 3.0999999046325684, | |
"width": 20, | |
"height": 17.799999237060547, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
3.0999999046325684]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.9289582967758179, | |
"g": 0.2460416555404663, | |
"b": 0.2460418939590454 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15198;1175:39065", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15199", | |
"name": "Car Name", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 128, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15200", | |
"name": "CR - V", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15201", | |
"name": "SUV", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15202", | |
"name": "price", | |
"type": "FRAME", | |
"x": 24, | |
"y": 320, | |
"width": 128, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15203", | |
"name": "$80.00/ day", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15204", | |
"name": "Car", | |
"type": "RECTANGLE", | |
"x": 276, | |
"y": 122, | |
"width": 248, | |
"height": 100, | |
"relativeTransform": [ [ -1, | |
0, | |
276], | |
[ 0, | |
1, | |
122]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 0.9298214316368103, | |
0, | |
0.03142857179045677], | |
[ 0, | |
0.9107144474983215, | |
0.0446428582072258]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": 0, | |
"contrast": 0, | |
"saturation": 0, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": 0, | |
"shadows": 0 | |
} | |
, | |
"imageHash": "92f74dec074acdd579ecaf8742bac9eede524b1f" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15205", | |
"name": "shadow", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 167, | |
"width": 304, | |
"height": 68, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
167]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "GRADIENT_LINEAR", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"gradientStops": [ { | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 0 | |
} | |
, | |
"position": 0, | |
"boundVariables": {} | |
} | |
, | |
{ | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 1 | |
} | |
, | |
"position": 1, | |
"boundVariables": {} | |
} | |
], | |
"gradientTransform": [ [ 6.123234262925839e-17, | |
1, | |
0], | |
[ -1, | |
6.123234262925839e-17, | |
1]] | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15206", | |
"name": "Catalog 3", | |
"type": "FRAME", | |
"x": 672, | |
"y": 0, | |
"width": 304, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
672], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15207", | |
"name": "Button Rental", | |
"type": "FRAME", | |
"x": 164, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
164], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15208", | |
"name": "Rent Now", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15209", | |
"name": "Spesification", | |
"type": "FRAME", | |
"x": 24, | |
"y": 272, | |
"width": 256, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
272]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:15210", | |
"name": "Gasoline", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 58, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15211", | |
"name": "vuesax/bold/gas-station", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15211;1171:38914", | |
"name": "vuesax/bold/gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15211;1171:38915", | |
"name": "gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15211;1171:38916", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15211;1171:38917", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.25, | |
"y": 2, | |
"width": 21.5, | |
"height": 20.75, | |
"relativeTransform": [ [ 1, | |
0, | |
1.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15212", | |
"name": "90L", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 28, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15213", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 74, | |
"y": 0, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
74], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15214", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15215", | |
"name": "Circle 4", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 20, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15216", | |
"name": "Circle 3", | |
"type": "RECTANGLE", | |
"x": 4, | |
"y": 4, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15217", | |
"name": "Circle 2", | |
"type": "VECTOR", | |
"x": 6, | |
"y": 6, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
6], | |
[ 0, | |
1, | |
6]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15218", | |
"name": "Circle 1", | |
"type": "RECTANGLE", | |
"x": 8, | |
"y": 8, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
8], | |
[ 0, | |
1, | |
8]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15219", | |
"name": "Rectangle 3", | |
"type": "RECTANGLE", | |
"x": 11, | |
"y": 17, | |
"width": 2, | |
"height": 4, | |
"relativeTransform": [ [ 1, | |
0, | |
11], | |
[ 0, | |
1, | |
17]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15220", | |
"name": "Rectangle 2", | |
"type": "RECTANGLE", | |
"x": 17, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
17], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15221", | |
"name": "Rectangle 1", | |
"type": "RECTANGLE", | |
"x": 3, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
3], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15222", | |
"name": "Manual", | |
"type": "TEXT", | |
"x": 28, | |
"y": 0, | |
"width": 48, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
28], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15223", | |
"name": "Capacity", | |
"type": "FRAME", | |
"x": 166, | |
"y": 0, | |
"width": 90, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
166], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15224", | |
"name": "vuesax/bold/profile-2user", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15224;1171:38906", | |
"name": "vuesax/bold/profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15224;1171:38907", | |
"name": "profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15224;1171:38908", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 4.25, | |
"y": 2, | |
"width": 9.5, | |
"height": 9.489999771118164, | |
"relativeTransform": [ [ 1, | |
0, | |
4.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15224;1171:38909", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9600000381469727, | |
"y": 12.754999160766602, | |
"width": 14.080000877380371, | |
"height": 9.245000839233398, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9600000381469727], | |
[ 0, | |
1, | |
12.754999160766602]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15224;1171:38910", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 14.109999656677246, | |
"y": 4.0565409660339355, | |
"width": 5.892612934112549, | |
"height": 7.178700923919678, | |
"relativeTransform": [ [ 1, | |
0, | |
14.109999656677246], | |
[ 0, | |
1, | |
4.0565409660339355]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15224;1171:38911", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 13.989999771118164, | |
"y": 12.499604225158691, | |
"width": 8.010906219482422, | |
"height": 7.252723693847656, | |
"relativeTransform": [ [ 1, | |
0, | |
13.989999771118164], | |
[ 0, | |
1, | |
12.499604225158691]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15224;1171:38912", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15225", | |
"name": "6 People", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 60, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15226", | |
"name": "vuesax/linear/heart", | |
"type": "INSTANCE", | |
"x": 256, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
256], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15226;1175:39057", | |
"name": "vuesax/linear/heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15226;1175:39058", | |
"name": "heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15226;1175:39059", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 3.0999999046325684, | |
"width": 20, | |
"height": 17.799999237060547, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
3.0999999046325684]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15226;1175:39060", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15227", | |
"name": "Car Name", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 140, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15228", | |
"name": "All New Terios", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 140, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15229", | |
"name": "SUV", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15230", | |
"name": "price", | |
"type": "FRAME", | |
"x": 24, | |
"y": 320, | |
"width": 128, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15231", | |
"name": "$74.00/ day", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15232", | |
"name": "Car", | |
"type": "RECTANGLE", | |
"x": 40, | |
"y": 122, | |
"width": 224, | |
"height": 100, | |
"relativeTransform": [ [ 1, | |
0, | |
40], | |
[ 0, | |
1, | |
122]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 0.9999998807907104, | |
0, | |
0], | |
[ 0, | |
0.559999942779541, | |
0.22500000894069672]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": -0.14971821010112762, | |
"contrast": 1, | |
"saturation": 1, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": -1, | |
"shadows": -1 | |
} | |
, | |
"imageHash": "509322661844e6b8d2bc7a68f501d79e35f5f4ab" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15233", | |
"name": "shadow", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 167, | |
"width": 304, | |
"height": 68, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
167]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "GRADIENT_LINEAR", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"gradientStops": [ { | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 0 | |
} | |
, | |
"position": 0, | |
"boundVariables": {} | |
} | |
, | |
{ | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 1 | |
} | |
, | |
"position": 1, | |
"boundVariables": {} | |
} | |
], | |
"gradientTransform": [ [ 6.123234262925839e-17, | |
1, | |
0], | |
[ -1, | |
6.123234262925839e-17, | |
1]] | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15234", | |
"name": "Catalog 4", | |
"type": "FRAME", | |
"x": 1008, | |
"y": 0, | |
"width": 304, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
1008], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15235", | |
"name": "Button Rental", | |
"type": "FRAME", | |
"x": 164, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
164], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15236", | |
"name": "Rent Now", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15237", | |
"name": "Spesification", | |
"type": "FRAME", | |
"x": 24, | |
"y": 272, | |
"width": 256, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
272]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:15238", | |
"name": "Gasoline", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 58, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15239", | |
"name": "vuesax/bold/gas-station", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15239;1171:38914", | |
"name": "vuesax/bold/gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15239;1171:38915", | |
"name": "gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15239;1171:38916", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15239;1171:38917", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.25, | |
"y": 2, | |
"width": 21.5, | |
"height": 20.75, | |
"relativeTransform": [ [ 1, | |
0, | |
1.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15240", | |
"name": "80L", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 28, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15241", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 74, | |
"y": 0, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
74], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15242", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15243", | |
"name": "Circle 4", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 20, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15244", | |
"name": "Circle 3", | |
"type": "RECTANGLE", | |
"x": 4, | |
"y": 4, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15245", | |
"name": "Circle 2", | |
"type": "VECTOR", | |
"x": 6, | |
"y": 6, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
6], | |
[ 0, | |
1, | |
6]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15246", | |
"name": "Circle 1", | |
"type": "RECTANGLE", | |
"x": 8, | |
"y": 8, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
8], | |
[ 0, | |
1, | |
8]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15247", | |
"name": "Rectangle 3", | |
"type": "RECTANGLE", | |
"x": 11, | |
"y": 17, | |
"width": 2, | |
"height": 4, | |
"relativeTransform": [ [ 1, | |
0, | |
11], | |
[ 0, | |
1, | |
17]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15248", | |
"name": "Rectangle 2", | |
"type": "RECTANGLE", | |
"x": 17, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
17], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15249", | |
"name": "Rectangle 1", | |
"type": "RECTANGLE", | |
"x": 3, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
3], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15250", | |
"name": "Manual", | |
"type": "TEXT", | |
"x": 28, | |
"y": 0, | |
"width": 48, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
28], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15251", | |
"name": "Capacity", | |
"type": "FRAME", | |
"x": 166, | |
"y": 0, | |
"width": 90, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
166], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15252", | |
"name": "vuesax/bold/profile-2user", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15252;1171:38906", | |
"name": "vuesax/bold/profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15252;1171:38907", | |
"name": "profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15252;1171:38908", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 4.25, | |
"y": 2, | |
"width": 9.5, | |
"height": 9.489999771118164, | |
"relativeTransform": [ [ 1, | |
0, | |
4.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15252;1171:38909", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9600000381469727, | |
"y": 12.754999160766602, | |
"width": 14.080000877380371, | |
"height": 9.245000839233398, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9600000381469727], | |
[ 0, | |
1, | |
12.754999160766602]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15252;1171:38910", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 14.109999656677246, | |
"y": 4.0565409660339355, | |
"width": 5.892612934112549, | |
"height": 7.178700923919678, | |
"relativeTransform": [ [ 1, | |
0, | |
14.109999656677246], | |
[ 0, | |
1, | |
4.0565409660339355]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15252;1171:38911", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 13.989999771118164, | |
"y": 12.499604225158691, | |
"width": 8.010906219482422, | |
"height": 7.252723693847656, | |
"relativeTransform": [ [ 1, | |
0, | |
13.989999771118164], | |
[ 0, | |
1, | |
12.499604225158691]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15252;1171:38912", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15253", | |
"name": "6 People", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 60, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15254", | |
"name": "vuesax/bold/heart", | |
"type": "INSTANCE", | |
"x": 256, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
256], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15254;1175:39062", | |
"name": "vuesax/bold/heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15254;1175:39063", | |
"name": "heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15254;1175:39064", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 3.0999999046325684, | |
"width": 20, | |
"height": 17.799999237060547, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
3.0999999046325684]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.9289582967758179, | |
"g": 0.2460416555404663, | |
"b": 0.2460418939590454 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15254;1175:39065", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15255", | |
"name": "Car Name", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 128, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15256", | |
"name": "CR - V", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15257", | |
"name": "SUV", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15258", | |
"name": "price", | |
"type": "FRAME", | |
"x": 24, | |
"y": 320, | |
"width": 128, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15259", | |
"name": "$80.00/ day", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15260", | |
"name": "Car", | |
"type": "RECTANGLE", | |
"x": 276, | |
"y": 122, | |
"width": 248, | |
"height": 100, | |
"relativeTransform": [ [ -1, | |
0, | |
276], | |
[ 0, | |
1, | |
122]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 0.9298214316368103, | |
0, | |
0.03142857179045677], | |
[ 0, | |
0.9107144474983215, | |
0.0446428582072258]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": -0.183616504073143, | |
"contrast": 1, | |
"saturation": -0.8276842832565308, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": 1, | |
"shadows": -1 | |
} | |
, | |
"imageHash": "92f74dec074acdd579ecaf8742bac9eede524b1f" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15261", | |
"name": "shadow", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 167, | |
"width": 304, | |
"height": 68, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
167]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "GRADIENT_LINEAR", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"gradientStops": [ { | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 0 | |
} | |
, | |
"position": 0, | |
"boundVariables": {} | |
} | |
, | |
{ | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 1 | |
} | |
, | |
"position": 1, | |
"boundVariables": {} | |
} | |
], | |
"gradientTransform": [ [ 6.123234262925839e-17, | |
1, | |
0], | |
[ -1, | |
6.123234262925839e-17, | |
1]] | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15262", | |
"name": "Recomendation 2", | |
"type": "FRAME", | |
"x": 0, | |
"y": 420, | |
"width": 1312, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
420]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 32, | |
"children": [ { | |
"id": "44:15263", | |
"name": "Catalog 1", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 304, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15264", | |
"name": "vuesax/bold/heart", | |
"type": "INSTANCE", | |
"x": 256, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
256], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15264;1175:39062", | |
"name": "vuesax/bold/heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15264;1175:39063", | |
"name": "heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15264;1175:39064", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 3.0999999046325684, | |
"width": 20, | |
"height": 17.799999237060547, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
3.0999999046325684]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.9289582967758179, | |
"g": 0.2460416555404663, | |
"b": 0.2460418939590454 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15264;1175:39065", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15265", | |
"name": "Button Rental", | |
"type": "FRAME", | |
"x": 164, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
164], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15266", | |
"name": "Rent Now", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15267", | |
"name": "Spesification", | |
"type": "FRAME", | |
"x": 24, | |
"y": 272, | |
"width": 256, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
272]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:15268", | |
"name": "Gasoline", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 58, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15269", | |
"name": "vuesax/bold/gas-station", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15269;1171:38914", | |
"name": "vuesax/bold/gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15269;1171:38915", | |
"name": "gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15269;1171:38916", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15269;1171:38917", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.25, | |
"y": 2, | |
"width": 21.5, | |
"height": 20.75, | |
"relativeTransform": [ [ 1, | |
0, | |
1.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15270", | |
"name": "70L", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 28, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15271", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 74, | |
"y": 0, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
74], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15272", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15273", | |
"name": "Circle 4", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 20, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15274", | |
"name": "Circle 3", | |
"type": "RECTANGLE", | |
"x": 4, | |
"y": 4, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15275", | |
"name": "Circle 2", | |
"type": "VECTOR", | |
"x": 6, | |
"y": 6, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
6], | |
[ 0, | |
1, | |
6]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15276", | |
"name": "Circle 1", | |
"type": "RECTANGLE", | |
"x": 8, | |
"y": 8, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
8], | |
[ 0, | |
1, | |
8]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15277", | |
"name": "Rectangle 3", | |
"type": "RECTANGLE", | |
"x": 11, | |
"y": 17, | |
"width": 2, | |
"height": 4, | |
"relativeTransform": [ [ 1, | |
0, | |
11], | |
[ 0, | |
1, | |
17]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15278", | |
"name": "Rectangle 2", | |
"type": "RECTANGLE", | |
"x": 17, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
17], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15279", | |
"name": "Rectangle 1", | |
"type": "RECTANGLE", | |
"x": 3, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
3], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15280", | |
"name": "Manual", | |
"type": "TEXT", | |
"x": 28, | |
"y": 0, | |
"width": 48, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
28], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15281", | |
"name": "Capacity", | |
"type": "FRAME", | |
"x": 166, | |
"y": 0, | |
"width": 90, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
166], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15282", | |
"name": "vuesax/bold/profile-2user", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15282;1171:38906", | |
"name": "vuesax/bold/profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15282;1171:38907", | |
"name": "profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15282;1171:38908", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 4.25, | |
"y": 2, | |
"width": 9.5, | |
"height": 9.489999771118164, | |
"relativeTransform": [ [ 1, | |
0, | |
4.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15282;1171:38909", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9600000381469727, | |
"y": 12.754999160766602, | |
"width": 14.080000877380371, | |
"height": 9.245000839233398, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9600000381469727], | |
[ 0, | |
1, | |
12.754999160766602]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15282;1171:38910", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 14.109999656677246, | |
"y": 4.0565409660339355, | |
"width": 5.892612934112549, | |
"height": 7.178700923919678, | |
"relativeTransform": [ [ 1, | |
0, | |
14.109999656677246], | |
[ 0, | |
1, | |
4.0565409660339355]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15282;1171:38911", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 13.989999771118164, | |
"y": 12.499604225158691, | |
"width": 8.010906219482422, | |
"height": 7.252723693847656, | |
"relativeTransform": [ [ 1, | |
0, | |
13.989999771118164], | |
[ 0, | |
1, | |
12.499604225158691]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15282;1171:38912", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15283", | |
"name": "4 People", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 60, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15284", | |
"name": "Car Name", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 160, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15285", | |
"name": "MG ZX Exclusice", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 160, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15286", | |
"name": "Hatchback", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15287", | |
"name": "price", | |
"type": "FRAME", | |
"x": 24, | |
"y": 316, | |
"width": 128, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
316]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15288", | |
"name": "$76.00/ day", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15289", | |
"name": "$80.00", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15290", | |
"name": "Car", | |
"type": "RECTANGLE", | |
"x": 24, | |
"y": 118, | |
"width": 264, | |
"height": 108, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
118]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
8.719307942328669e-9]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": 0, | |
"contrast": 0, | |
"saturation": 0, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": 0, | |
"shadows": 0 | |
} | |
, | |
"imageHash": "f699abef3f5cf908bc1ebc5bf5c91aca676e4157" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15291", | |
"name": "shadow", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 167, | |
"width": 304, | |
"height": 68, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
167]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "GRADIENT_LINEAR", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"gradientStops": [ { | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 0 | |
} | |
, | |
"position": 0, | |
"boundVariables": {} | |
} | |
, | |
{ | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 1 | |
} | |
, | |
"position": 1, | |
"boundVariables": {} | |
} | |
], | |
"gradientTransform": [ [ 6.123234262925839e-17, | |
1, | |
0], | |
[ -1, | |
6.123234262925839e-17, | |
1]] | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15292", | |
"name": "Catalog 2", | |
"type": "FRAME", | |
"x": 336, | |
"y": 0, | |
"width": 304, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
336], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15293", | |
"name": "Button Rental", | |
"type": "FRAME", | |
"x": 164, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
164], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15294", | |
"name": "Rent Now", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15295", | |
"name": "Spesification", | |
"type": "FRAME", | |
"x": 24, | |
"y": 272, | |
"width": 256, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
272]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:15296", | |
"name": "Gasoline", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 58, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15297", | |
"name": "vuesax/bold/gas-station", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15297;1171:38914", | |
"name": "vuesax/bold/gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15297;1171:38915", | |
"name": "gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15297;1171:38916", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15297;1171:38917", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.25, | |
"y": 2, | |
"width": 21.5, | |
"height": 20.75, | |
"relativeTransform": [ [ 1, | |
0, | |
1.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15298", | |
"name": "80L", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 28, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15299", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 74, | |
"y": 0, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
74], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15300", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15301", | |
"name": "Circle 4", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 20, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15302", | |
"name": "Circle 3", | |
"type": "RECTANGLE", | |
"x": 4, | |
"y": 4, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15303", | |
"name": "Circle 2", | |
"type": "VECTOR", | |
"x": 6, | |
"y": 6, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
6], | |
[ 0, | |
1, | |
6]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15304", | |
"name": "Circle 1", | |
"type": "RECTANGLE", | |
"x": 8, | |
"y": 8, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
8], | |
[ 0, | |
1, | |
8]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15305", | |
"name": "Rectangle 3", | |
"type": "RECTANGLE", | |
"x": 11, | |
"y": 17, | |
"width": 2, | |
"height": 4, | |
"relativeTransform": [ [ 1, | |
0, | |
11], | |
[ 0, | |
1, | |
17]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15306", | |
"name": "Rectangle 2", | |
"type": "RECTANGLE", | |
"x": 17, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
17], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15307", | |
"name": "Rectangle 1", | |
"type": "RECTANGLE", | |
"x": 3, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
3], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15308", | |
"name": "Manual", | |
"type": "TEXT", | |
"x": 28, | |
"y": 0, | |
"width": 48, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
28], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15309", | |
"name": "Capacity", | |
"type": "FRAME", | |
"x": 166, | |
"y": 0, | |
"width": 90, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
166], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15310", | |
"name": "vuesax/bold/profile-2user", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15310;1171:38906", | |
"name": "vuesax/bold/profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15310;1171:38907", | |
"name": "profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15310;1171:38908", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 4.25, | |
"y": 2, | |
"width": 9.5, | |
"height": 9.489999771118164, | |
"relativeTransform": [ [ 1, | |
0, | |
4.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15310;1171:38909", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9600000381469727, | |
"y": 12.754999160766602, | |
"width": 14.080000877380371, | |
"height": 9.245000839233398, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9600000381469727], | |
[ 0, | |
1, | |
12.754999160766602]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15310;1171:38910", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 14.109999656677246, | |
"y": 4.0565409660339355, | |
"width": 5.892612934112549, | |
"height": 7.178700923919678, | |
"relativeTransform": [ [ 1, | |
0, | |
14.109999656677246], | |
[ 0, | |
1, | |
4.0565409660339355]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15310;1171:38911", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 13.989999771118164, | |
"y": 12.499604225158691, | |
"width": 8.010906219482422, | |
"height": 7.252723693847656, | |
"relativeTransform": [ [ 1, | |
0, | |
13.989999771118164], | |
[ 0, | |
1, | |
12.499604225158691]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15310;1171:38912", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15311", | |
"name": "6 People", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 60, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15312", | |
"name": "vuesax/linear/heart", | |
"type": "INSTANCE", | |
"x": 256, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
256], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15312;1175:39057", | |
"name": "vuesax/linear/heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15312;1175:39058", | |
"name": "heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15312;1175:39059", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 3.0999999046325684, | |
"width": 20, | |
"height": 17.799999237060547, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
3.0999999046325684]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15312;1175:39060", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15313", | |
"name": "Car Name", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 128, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15314", | |
"name": "New MG ZS", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15315", | |
"name": "SUV", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15316", | |
"name": "price", | |
"type": "FRAME", | |
"x": 24, | |
"y": 320, | |
"width": 128, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15317", | |
"name": "$80.00/ day", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15318", | |
"name": "Car", | |
"type": "RECTANGLE", | |
"x": 296, | |
"y": 116, | |
"width": 288, | |
"height": 112, | |
"relativeTransform": [ [ -1, | |
0, | |
296], | |
[ 0, | |
1, | |
116]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 0.8124026656150818, | |
0, | |
0.10492029041051865], | |
[ 0, | |
0.6666667461395264, | |
0.09259258955717087]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": 0, | |
"contrast": 0, | |
"saturation": 0, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": 0, | |
"shadows": 0 | |
} | |
, | |
"imageHash": "2ed7554073defa787d71b948931bdf156be51493" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15319", | |
"name": "shadow", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 167, | |
"width": 304, | |
"height": 68, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
167]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "GRADIENT_LINEAR", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"gradientStops": [ { | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 0 | |
} | |
, | |
"position": 0, | |
"boundVariables": {} | |
} | |
, | |
{ | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 1 | |
} | |
, | |
"position": 1, | |
"boundVariables": {} | |
} | |
], | |
"gradientTransform": [ [ 6.123234262925839e-17, | |
1, | |
0], | |
[ -1, | |
6.123234262925839e-17, | |
1]] | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15320", | |
"name": "Catalog 3", | |
"type": "FRAME", | |
"x": 672, | |
"y": 0, | |
"width": 304, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
672], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15321", | |
"name": "vuesax/bold/heart", | |
"type": "INSTANCE", | |
"x": 256, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
256], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15321;1175:39062", | |
"name": "vuesax/bold/heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15321;1175:39063", | |
"name": "heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15321;1175:39064", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 3.0999999046325684, | |
"width": 20, | |
"height": 17.799999237060547, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
3.0999999046325684]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.9289582967758179, | |
"g": 0.2460416555404663, | |
"b": 0.2460418939590454 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15321;1175:39065", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15322", | |
"name": "Button Rental", | |
"type": "FRAME", | |
"x": 164, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
164], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15323", | |
"name": "Rent Now", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15324", | |
"name": "Spesification", | |
"type": "FRAME", | |
"x": 24, | |
"y": 272, | |
"width": 256, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
272]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:15325", | |
"name": "Gasoline", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 58, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15326", | |
"name": "vuesax/bold/gas-station", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15326;1171:38914", | |
"name": "vuesax/bold/gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15326;1171:38915", | |
"name": "gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15326;1171:38916", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15326;1171:38917", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.25, | |
"y": 2, | |
"width": 21.5, | |
"height": 20.75, | |
"relativeTransform": [ [ 1, | |
0, | |
1.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15327", | |
"name": "90L", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 28, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15328", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 74, | |
"y": 0, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
74], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15329", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15330", | |
"name": "Circle 4", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 20, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15331", | |
"name": "Circle 3", | |
"type": "RECTANGLE", | |
"x": 4, | |
"y": 4, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15332", | |
"name": "Circle 2", | |
"type": "VECTOR", | |
"x": 6, | |
"y": 6, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
6], | |
[ 0, | |
1, | |
6]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15333", | |
"name": "Circle 1", | |
"type": "RECTANGLE", | |
"x": 8, | |
"y": 8, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
8], | |
[ 0, | |
1, | |
8]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15334", | |
"name": "Rectangle 3", | |
"type": "RECTANGLE", | |
"x": 11, | |
"y": 17, | |
"width": 2, | |
"height": 4, | |
"relativeTransform": [ [ 1, | |
0, | |
11], | |
[ 0, | |
1, | |
17]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15335", | |
"name": "Rectangle 2", | |
"type": "RECTANGLE", | |
"x": 17, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
17], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15336", | |
"name": "Rectangle 1", | |
"type": "RECTANGLE", | |
"x": 3, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
3], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15337", | |
"name": "Manual", | |
"type": "TEXT", | |
"x": 28, | |
"y": 0, | |
"width": 48, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
28], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15338", | |
"name": "Capacity", | |
"type": "FRAME", | |
"x": 166, | |
"y": 0, | |
"width": 90, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
166], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15339", | |
"name": "vuesax/bold/profile-2user", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15339;1171:38906", | |
"name": "vuesax/bold/profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15339;1171:38907", | |
"name": "profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15339;1171:38908", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 4.25, | |
"y": 2, | |
"width": 9.5, | |
"height": 9.489999771118164, | |
"relativeTransform": [ [ 1, | |
0, | |
4.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15339;1171:38909", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9600000381469727, | |
"y": 12.754999160766602, | |
"width": 14.080000877380371, | |
"height": 9.245000839233398, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9600000381469727], | |
[ 0, | |
1, | |
12.754999160766602]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15339;1171:38910", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 14.109999656677246, | |
"y": 4.0565409660339355, | |
"width": 5.892612934112549, | |
"height": 7.178700923919678, | |
"relativeTransform": [ [ 1, | |
0, | |
14.109999656677246], | |
[ 0, | |
1, | |
4.0565409660339355]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15339;1171:38911", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 13.989999771118164, | |
"y": 12.499604225158691, | |
"width": 8.010906219482422, | |
"height": 7.252723693847656, | |
"relativeTransform": [ [ 1, | |
0, | |
13.989999771118164], | |
[ 0, | |
1, | |
12.499604225158691]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15339;1171:38912", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15340", | |
"name": "4 People", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 60, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15341", | |
"name": "Car Name", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 160, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15342", | |
"name": "MG ZX Excite", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 160, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15343", | |
"name": "Hatchback", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15344", | |
"name": "Car", | |
"type": "RECTANGLE", | |
"x": 24, | |
"y": 118, | |
"width": 264, | |
"height": 108, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
118]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
8.719307942328669e-9]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": 0, | |
"contrast": 0, | |
"saturation": 0, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": 0, | |
"shadows": 0 | |
} | |
, | |
"imageHash": "f699abef3f5cf908bc1ebc5bf5c91aca676e4157" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15345", | |
"name": "price", | |
"type": "FRAME", | |
"x": 24, | |
"y": 320, | |
"width": 128, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15346", | |
"name": "$74.00/ day", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15347", | |
"name": "shadow", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 167, | |
"width": 304, | |
"height": 68, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
167]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "GRADIENT_LINEAR", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"gradientStops": [ { | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 0 | |
} | |
, | |
"position": 0, | |
"boundVariables": {} | |
} | |
, | |
{ | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 1 | |
} | |
, | |
"position": 1, | |
"boundVariables": {} | |
} | |
], | |
"gradientTransform": [ [ 6.123234262925839e-17, | |
1, | |
0], | |
[ -1, | |
6.123234262925839e-17, | |
1]] | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15348", | |
"name": "Catalog 4", | |
"type": "FRAME", | |
"x": 1008, | |
"y": 0, | |
"width": 304, | |
"height": 388, | |
"relativeTransform": [ [ 1, | |
0, | |
1008], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15349", | |
"name": "Button Rental", | |
"type": "FRAME", | |
"x": 164, | |
"y": 320, | |
"width": 116, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
164], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15350", | |
"name": "Rent Now", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15351", | |
"name": "Spesification", | |
"type": "FRAME", | |
"x": 24, | |
"y": 272, | |
"width": 256, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
272]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:15352", | |
"name": "Gasoline", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 58, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15353", | |
"name": "vuesax/bold/gas-station", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15353;1171:38914", | |
"name": "vuesax/bold/gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15353;1171:38915", | |
"name": "gas-station", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15353;1171:38916", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15353;1171:38917", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.25, | |
"y": 2, | |
"width": 21.5, | |
"height": 20.75, | |
"relativeTransform": [ [ 1, | |
0, | |
1.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15354", | |
"name": "80L", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 28, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15355", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 74, | |
"y": 0, | |
"width": 76, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
74], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15356", | |
"name": "Car", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15357", | |
"name": "Circle 4", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 20, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15358", | |
"name": "Circle 3", | |
"type": "RECTANGLE", | |
"x": 4, | |
"y": 4, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15359", | |
"name": "Circle 2", | |
"type": "VECTOR", | |
"x": 6, | |
"y": 6, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
6], | |
[ 0, | |
1, | |
6]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15360", | |
"name": "Circle 1", | |
"type": "RECTANGLE", | |
"x": 8, | |
"y": 8, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
8], | |
[ 0, | |
1, | |
8]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 20, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15361", | |
"name": "Rectangle 3", | |
"type": "RECTANGLE", | |
"x": 11, | |
"y": 17, | |
"width": 2, | |
"height": 4, | |
"relativeTransform": [ [ 1, | |
0, | |
11], | |
[ 0, | |
1, | |
17]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15362", | |
"name": "Rectangle 2", | |
"type": "RECTANGLE", | |
"x": 17, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
17], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15363", | |
"name": "Rectangle 1", | |
"type": "RECTANGLE", | |
"x": 3, | |
"y": 11, | |
"width": 4, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
3], | |
[ 0, | |
1, | |
11]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15364", | |
"name": "Manual", | |
"type": "TEXT", | |
"x": 28, | |
"y": 0, | |
"width": 48, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
28], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15365", | |
"name": "Capacity", | |
"type": "FRAME", | |
"x": 166, | |
"y": 0, | |
"width": 90, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
166], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 6, | |
"children": [ { | |
"id": "44:15366", | |
"name": "vuesax/bold/profile-2user", | |
"type": "INSTANCE", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15366;1171:38906", | |
"name": "vuesax/bold/profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15366;1171:38907", | |
"name": "profile-2user", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15366;1171:38908", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 4.25, | |
"y": 2, | |
"width": 9.5, | |
"height": 9.489999771118164, | |
"relativeTransform": [ [ 1, | |
0, | |
4.25], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15366;1171:38909", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.9600000381469727, | |
"y": 12.754999160766602, | |
"width": 14.080000877380371, | |
"height": 9.245000839233398, | |
"relativeTransform": [ [ 1, | |
0, | |
1.9600000381469727], | |
[ 0, | |
1, | |
12.754999160766602]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15366;1171:38910", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 14.109999656677246, | |
"y": 4.0565409660339355, | |
"width": 5.892612934112549, | |
"height": 7.178700923919678, | |
"relativeTransform": [ [ 1, | |
0, | |
14.109999656677246], | |
[ 0, | |
1, | |
4.0565409660339355]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15366;1171:38911", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 13.989999771118164, | |
"y": 12.499604225158691, | |
"width": 8.010906219482422, | |
"height": 7.252723693847656, | |
"relativeTransform": [ [ 1, | |
0, | |
13.989999771118164], | |
[ 0, | |
1, | |
12.499604225158691]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15366;1171:38912", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15367", | |
"name": "6 People", | |
"type": "TEXT", | |
"x": 30, | |
"y": 0, | |
"width": 60, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
30], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15368", | |
"name": "vuesax/linear/heart", | |
"type": "INSTANCE", | |
"x": 256, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
256], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15368;1175:39057", | |
"name": "vuesax/linear/heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15368;1175:39058", | |
"name": "heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15368;1175:39059", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 3.0999999046325684, | |
"width": 20, | |
"height": 17.799999237060547, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
3.0999999046325684]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15368;1175:39060", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15369", | |
"name": "Car Name", | |
"type": "FRAME", | |
"x": 24, | |
"y": 24, | |
"width": 128, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
24]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15370", | |
"name": "New MG ZS", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15371", | |
"name": "SUV", | |
"type": "TEXT", | |
"x": 0, | |
"y": 28, | |
"width": 128, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15372", | |
"name": "price", | |
"type": "FRAME", | |
"x": 24, | |
"y": 320, | |
"width": 128, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
320]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:15373", | |
"name": "$80.00/ day", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 128, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15374", | |
"name": "Car", | |
"type": "RECTANGLE", | |
"x": 296, | |
"y": 116, | |
"width": 288, | |
"height": 112, | |
"relativeTransform": [ [ -1, | |
0, | |
296], | |
[ 0, | |
1, | |
116]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 0.8124026656150818, | |
0, | |
0.10492029041051865], | |
[ 0, | |
0.6666667461395264, | |
0.09259258955717087]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": 0, | |
"contrast": 0, | |
"saturation": -1, | |
"temperature": -1, | |
"tint": -1, | |
"highlights": -1, | |
"shadows": -1 | |
} | |
, | |
"imageHash": "2ed7554073defa787d71b948931bdf156be51493" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15375", | |
"name": "shadow", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 167, | |
"width": 304, | |
"height": 68, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
167]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "GRADIENT_LINEAR", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"gradientStops": [ { | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 0 | |
} | |
, | |
"position": 0, | |
"boundVariables": {} | |
} | |
, | |
{ | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1, | |
"a": 1 | |
} | |
, | |
"position": 1, | |
"boundVariables": {} | |
} | |
], | |
"gradientTransform": [ [ 6.123234262925839e-17, | |
1, | |
0], | |
[ -1, | |
6.123234262925839e-17, | |
1]] | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15376", | |
"name": "Show More", | |
"type": "FRAME", | |
"x": 642, | |
"y": 2012, | |
"width": 734, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
642], | |
[ 0, | |
1, | |
2012]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 438, | |
"children": [ { | |
"id": "44:15377", | |
"name": "Show More", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 156, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:15378", | |
"name": "Show more car", | |
"type": "TEXT", | |
"x": 20, | |
"y": 10, | |
"width": 116, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15379", | |
"name": "120 Car", | |
"type": "TEXT", | |
"x": 594, | |
"y": 10, | |
"width": 140, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
594], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15380", | |
"name": "Nav Bar Top", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 1440, | |
"height": 124, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.4000000059604645, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.7647058963775635, | |
"g": 0.8313725590705872, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15381", | |
"name": "Profil & Notification", | |
"type": "FRAME", | |
"x": 1172, | |
"y": 40, | |
"width": 236, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
1172], | |
[ 0, | |
1, | |
40]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 20, | |
"children": [ { | |
"id": "44:15382", | |
"name": "Like", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 44, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:15383", | |
"name": "vuesax/bold/heart", | |
"type": "INSTANCE", | |
"x": 10, | |
"y": 10, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
10], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15383;1165:38910", | |
"name": "vuesax/bold/heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15383;1165:38911", | |
"name": "heart", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15383;1165:38912", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 3.0999999046325684, | |
"width": 20, | |
"height": 17.799999237060547, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
3.0999999046325684]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15383;1165:38913", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15384", | |
"name": "button", | |
"type": "RECTANGLE", | |
"x": 0, | |
"y": 0, | |
"width": 44, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.4000000059604645, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.7647058963775635, | |
"g": 0.8313725590705872, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1, | |
"cornerRadius": 90, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15385", | |
"name": "Notification", | |
"type": "GROUP", | |
"x": 64, | |
"y": 0, | |
"width": 44, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
64], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:15386", | |
"name": "vuesax/bold/notification", | |
"type": "INSTANCE", | |
"x": 74, | |
"y": 10, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
74], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15386;1165:38915", | |
"name": "vuesax/bold/notification", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15386;1165:38916", | |
"name": "notification", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15386;1165:38917", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 4.310604095458984, | |
"y": 2, | |
"width": 15.383649826049805, | |
"height": 17, | |
"relativeTransform": [ [ 1, | |
0, | |
4.310604095458984], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15386;1165:38918", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 9.180000305175781, | |
"y": 20, | |
"width": 5.649999618530273, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
9.180000305175781], | |
[ 0, | |
1, | |
20]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15386;1165:38919", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15387", | |
"name": "button", | |
"type": "RECTANGLE", | |
"x": 64, | |
"y": 0, | |
"width": 44, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
64], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.4000000059604645, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.7647058963775635, | |
"g": 0.8313725590705872, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1, | |
"cornerRadius": 90, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15388", | |
"name": "Notif", | |
"type": "ELLIPSE", | |
"x": 95, | |
"y": 2, | |
"width": 11, | |
"height": 11, | |
"relativeTransform": [ [ 1, | |
0, | |
95], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 0.2666666805744171, | |
"b": 0.13725490868091583 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15389", | |
"name": "Settings", | |
"type": "GROUP", | |
"x": 128, | |
"y": 0, | |
"width": 44, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
128], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:15390", | |
"name": "vuesax/bold/setting-2", | |
"type": "INSTANCE", | |
"x": 138, | |
"y": 10, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
138], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15390;1165:38905", | |
"name": "vuesax/bold/setting-2", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15390;1165:38906", | |
"name": "setting-2", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15390;1165:38907", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2.561098575592041, | |
"width": 20.010000228881836, | |
"height": 18.8778018951416, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2.561098575592041]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15390;1165:38908", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 24, | |
"y": 24, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ -1, | |
1.2246469849340659e-16, | |
24], | |
[ -1.2246469849340659e-16, | |
-1, | |
24]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15391", | |
"name": "button", | |
"type": "RECTANGLE", | |
"x": 128, | |
"y": 0, | |
"width": 44, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
128], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.4000000059604645, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.7647058963775635, | |
"g": 0.8313725590705872, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1, | |
"cornerRadius": 90, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15392", | |
"name": "Profil", | |
"type": "GROUP", | |
"x": 192, | |
"y": 0, | |
"width": 44, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
192], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:15393", | |
"name": "Image", | |
"type": "RECTANGLE", | |
"x": 192, | |
"y": 0, | |
"width": 44, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
192], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "FILL", | |
"imageTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"scalingFactor": 0.5, | |
"rotation": 0, | |
"filters": { | |
"exposure": 0, | |
"contrast": 0, | |
"saturation": 0, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": 0, | |
"shadows": 0 | |
} | |
, | |
"imageHash": "f1f56cb57c6c5d88e94501a481b5f732536c2851" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 90, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15394", | |
"name": "Logo", | |
"type": "TEXT", | |
"x": 60, | |
"y": 40, | |
"width": 148, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
60], | |
[ 0, | |
1, | |
40]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15395", | |
"name": "Search", | |
"type": "GROUP", | |
"x": 272, | |
"y": 40, | |
"width": 492, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
272], | |
[ 0, | |
1, | |
40]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:15396", | |
"name": "Button", | |
"type": "RECTANGLE", | |
"x": 272, | |
"y": 40, | |
"width": 492, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
272], | |
[ 0, | |
1, | |
40]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.4000000059604645, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.7647058963775635, | |
"g": 0.8313725590705872, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1, | |
"cornerRadius": 70, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15397", | |
"name": "Search something here", | |
"type": "TEXT", | |
"x": 336, | |
"y": 52, | |
"width": 149, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
336], | |
[ 0, | |
1, | |
52]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15398", | |
"name": "search-normal", | |
"type": "INSTANCE", | |
"x": 292, | |
"y": 50, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
292], | |
[ 0, | |
1, | |
50]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15398;2:19570", | |
"name": "vuesax/linear/search-normal", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15398;2:19571", | |
"name": "search-normal", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15398;2:19572", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 19, | |
"height": 19, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15398;2:19573", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 20, | |
"y": 20, | |
"width": 2, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
20]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15398;2:19574", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15399", | |
"name": "vuesax/linear/filter", | |
"type": "INSTANCE", | |
"x": 720, | |
"y": 50, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
720], | |
[ 0, | |
1, | |
50]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:15399;1215:6936", | |
"name": "vuesax/linear/filter", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15399;1215:6937", | |
"name": "filter", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:15399;1215:6938", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 16, | |
"y": 6.5, | |
"width": 6, | |
"height": 0, | |
"relativeTransform": [ [ 1, | |
0, | |
16], | |
[ 0, | |
1, | |
6.5]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15399;1215:6939", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 6.5, | |
"width": 4, | |
"height": 0, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
6.5]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15399;1215:6940", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 6.5, | |
"y": 3, | |
"width": 7, | |
"height": 7, | |
"relativeTransform": [ [ 1, | |
0, | |
6.5], | |
[ 0, | |
1, | |
3]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15399;1215:6941", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 18, | |
"y": 17.5, | |
"width": 4, | |
"height": 0, | |
"relativeTransform": [ [ 1, | |
0, | |
18], | |
[ 0, | |
1, | |
17.5]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15399;1215:6942", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 17.5, | |
"width": 6, | |
"height": 0, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
17.5]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15399;1215:6943", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 10.5, | |
"y": 14, | |
"width": 7, | |
"height": 7, | |
"relativeTransform": [ [ 1, | |
0, | |
10.5], | |
[ 0, | |
1, | |
14]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:15399;1215:6944", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15400", | |
"name": "Footer", | |
"type": "FRAME", | |
"x": 0, | |
"y": 2244, | |
"width": 1440, | |
"height": 480, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
2244]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:15401", | |
"name": "©2022 MORENT. All rights reserved", | |
"type": "TEXT", | |
"x": 60, | |
"y": 396, | |
"width": 292, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
60], | |
[ 0, | |
1, | |
396]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "NORMAL", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15402", | |
"name": "Terms & Condition", | |
"type": "TEXT", | |
"x": 1236, | |
"y": 396, | |
"width": 144, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
1236], | |
[ 0, | |
1, | |
396]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "NORMAL", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15403", | |
"name": "Privacy & Policy", | |
"type": "TEXT", | |
"x": 1032, | |
"y": 396, | |
"width": 144, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
1032], | |
[ 0, | |
1, | |
396]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "NORMAL", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15404", | |
"name": "Socials", | |
"type": "GROUP", | |
"x": 1228, | |
"y": 80, | |
"width": 152, | |
"height": 244, | |
"relativeTransform": [ [ 1, | |
0, | |
1228], | |
[ 0, | |
1, | |
80]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:15405", | |
"name": "Discord Instagram Twitter Facebook", | |
"type": "TEXT", | |
"x": 1228, | |
"y": 136, | |
"width": 152, | |
"height": 188, | |
"relativeTransform": [ [ 1, | |
0, | |
1228], | |
[ 0, | |
1, | |
136]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.6000000238418579, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.07450980693101883, | |
"g": 0.07450980693101883, | |
"b": 0.07450980693101883 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "NORMAL", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15406", | |
"name": "Socials", | |
"type": "TEXT", | |
"x": 1228, | |
"y": 80, | |
"width": 152, | |
"height": 32, | |
"relativeTransform": [ [ 1, | |
0, | |
1228], | |
[ 0, | |
1, | |
80]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "NORMAL", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15407", | |
"name": "Community", | |
"type": "GROUP", | |
"x": 1016, | |
"y": 80, | |
"width": 152, | |
"height": 244, | |
"relativeTransform": [ [ 1, | |
0, | |
1016], | |
[ 0, | |
1, | |
80]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:15408", | |
"name": "Events Blog Podcast Invite a friend", | |
"type": "TEXT", | |
"x": 1016, | |
"y": 136, | |
"width": 152, | |
"height": 188, | |
"relativeTransform": [ [ 1, | |
0, | |
1016], | |
[ 0, | |
1, | |
136]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.6000000238418579, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.07450980693101883, | |
"g": 0.07450980693101883, | |
"b": 0.07450980693101883 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "NORMAL", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15409", | |
"name": "Community", | |
"type": "TEXT", | |
"x": 1016, | |
"y": 80, | |
"width": 152, | |
"height": 32, | |
"relativeTransform": [ [ 1, | |
0, | |
1016], | |
[ 0, | |
1, | |
80]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "NORMAL", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15410", | |
"name": "About", | |
"type": "GROUP", | |
"x": 804, | |
"y": 80, | |
"width": 152, | |
"height": 244, | |
"relativeTransform": [ [ 1, | |
0, | |
804], | |
[ 0, | |
1, | |
80]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:15411", | |
"name": "How it works Featured Partnership Bussiness Relation", | |
"type": "TEXT", | |
"x": 804, | |
"y": 136, | |
"width": 152, | |
"height": 188, | |
"relativeTransform": [ [ 1, | |
0, | |
804], | |
[ 0, | |
1, | |
136]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.6000000238418579, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.07450980693101883, | |
"g": 0.07450980693101883, | |
"b": 0.07450980693101883 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "NORMAL", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15412", | |
"name": "About", | |
"type": "TEXT", | |
"x": 804, | |
"y": 80, | |
"width": 152, | |
"height": 32, | |
"relativeTransform": [ [ 1, | |
0, | |
804], | |
[ 0, | |
1, | |
80]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "NORMAL", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:15413", | |
"name": "Line", | |
"type": "LINE", | |
"x": 1380, | |
"y": 360, | |
"width": 1320, | |
"height": 0, | |
"relativeTransform": [ [ -1, | |
2.7755575615628914e-16, | |
1380], | |
[ -2.7755575615628914e-16, | |
-1, | |
360]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.1599999964237213, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.07450980693101883, | |
"g": 0.07450980693101883, | |
"b": 0.07450980693101883 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15414", | |
"name": "Logo", | |
"type": "FRAME", | |
"x": 60, | |
"y": 80, | |
"width": 292, | |
"height": 108, | |
"relativeTransform": [ [ 1, | |
0, | |
60], | |
[ 0, | |
1, | |
80]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 16, | |
"children": [ { | |
"id": "44:15415", | |
"name": "Logo", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 148, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:15416", | |
"name": "Our vision is to provide convenience and help increase your sales business.", | |
"type": "TEXT", | |
"x": 0, | |
"y": 60, | |
"width": 292, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
60]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.6000000238418579, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.07450980693101883, | |
"g": 0.07450980693101883, | |
"b": 0.07450980693101883 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
Homepage Mobile Figma Design: { | |
"id": "44:16780", | |
"name": "HF - Home Car Rent - Mobile", | |
"type": "FRAME", | |
"x": -2500, | |
"y": -1321, | |
"width": 375, | |
"height": 3257, | |
"relativeTransform": [ [ 1, | |
0, | |
-2500], | |
[ 0, | |
1, | |
-1321]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.9647058844566345, | |
"g": 0.9686274528503418, | |
"b": 0.9764705896377563 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:16781", | |
"name": "BG", | |
"type": "RECTANGLE", | |
"x": 1, | |
"y": 0, | |
"width": 375, | |
"height": 288, | |
"relativeTransform": [ [ 1, | |
0, | |
1], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16782", | |
"name": "Profil", | |
"type": "FRAME", | |
"x": 25, | |
"y": 32, | |
"width": 327, | |
"height": 28, | |
"relativeTransform": [ [ 1, | |
0, | |
25], | |
[ 0, | |
1, | |
32]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 191, | |
"children": [ { | |
"id": "44:16783", | |
"name": "Logo", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 108, | |
"height": 28, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16784", | |
"name": "Image", | |
"type": "RECTANGLE", | |
"x": 299, | |
"y": 0, | |
"width": 28, | |
"height": 28, | |
"relativeTransform": [ [ 1, | |
0, | |
299], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "FILL", | |
"imageTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"scalingFactor": 0.5, | |
"rotation": 0, | |
"filters": { | |
"exposure": 0, | |
"contrast": 0, | |
"saturation": 0, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": 0, | |
"shadows": 0 | |
} | |
, | |
"imageHash": "f1f56cb57c6c5d88e94501a481b5f732536c2851" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 90, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:16785", | |
"name": "Search", | |
"type": "GROUP", | |
"x": 25, | |
"y": 92, | |
"width": 263, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
25], | |
[ 0, | |
1, | |
92]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:16786", | |
"name": "BG", | |
"type": "RECTANGLE", | |
"x": 25, | |
"y": 92, | |
"width": 263, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
25], | |
[ 0, | |
1, | |
92]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.4000000059604645, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.7647058963775635, | |
"g": 0.8313725590705872, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16787", | |
"name": "Search something here", | |
"type": "TEXT", | |
"x": 81, | |
"y": 104, | |
"width": 150, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
81], | |
[ 0, | |
1, | |
104]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16788", | |
"name": "search-normal", | |
"type": "INSTANCE", | |
"x": 49, | |
"y": 104, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
49], | |
[ 0, | |
1, | |
104]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:16788;2:19570", | |
"name": "vuesax/linear/search-normal", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:16788;2:19571", | |
"name": "search-normal", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:16788;2:19572", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 2, | |
"width": 19, | |
"height": 19, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:16788;2:19573", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 20, | |
"y": 20, | |
"width": 2, | |
"height": 2, | |
"relativeTransform": [ [ 1, | |
0, | |
20], | |
[ 0, | |
1, | |
20]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:16788;2:19574", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:16789", | |
"name": "Filter", | |
"type": "GROUP", | |
"x": 304, | |
"y": 92, | |
"width": 48, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
304], | |
[ 0, | |
1, | |
92]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:16790", | |
"name": "BG", | |
"type": "RECTANGLE", | |
"x": 304, | |
"y": 92, | |
"width": 48, | |
"height": 48, | |
"relativeTransform": [ [ 1, | |
0, | |
304], | |
[ 0, | |
1, | |
92]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.4000000059604645, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.7647058963775635, | |
"g": 0.8313725590705872, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16791", | |
"name": "vuesax/linear/filter", | |
"type": "INSTANCE", | |
"x": 316, | |
"y": 104, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
316], | |
[ 0, | |
1, | |
104]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:16791;9:7938", | |
"name": "vuesax/linear/filter", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:16791;9:7939", | |
"name": "filter", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:16791;9:7940", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 16, | |
"y": 6.5, | |
"width": 6, | |
"height": 0, | |
"relativeTransform": [ [ 1, | |
0, | |
16], | |
[ 0, | |
1, | |
6.5]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:16791;9:7941", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 6.5, | |
"width": 4, | |
"height": 0, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
6.5]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:16791;9:7942", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 6.5, | |
"y": 3, | |
"width": 7, | |
"height": 7, | |
"relativeTransform": [ [ 1, | |
0, | |
6.5], | |
[ 0, | |
1, | |
3]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:16791;9:7943", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 18, | |
"y": 17.5, | |
"width": 4, | |
"height": 0, | |
"relativeTransform": [ [ 1, | |
0, | |
18], | |
[ 0, | |
1, | |
17.5]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:16791;9:7944", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 2, | |
"y": 17.5, | |
"width": 6, | |
"height": 0, | |
"relativeTransform": [ [ 1, | |
0, | |
2], | |
[ 0, | |
1, | |
17.5]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:16791;9:7945", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 10.5, | |
"y": 14, | |
"width": 7, | |
"height": 7, | |
"relativeTransform": [ [ 1, | |
0, | |
10.5], | |
[ 0, | |
1, | |
14]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3490196168422699, | |
"g": 0.40392157435417175, | |
"b": 0.501960813999176 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 1.5, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "I44:16791;9:7946", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 0, | |
"y": 0, | |
"width": 24, | |
"height": 24, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:16792", | |
"name": "Ads", | |
"type": "FRAME", | |
"x": 25, | |
"y": 172, | |
"width": 327, | |
"height": 232, | |
"relativeTransform": [ [ 1, | |
0, | |
25], | |
[ 0, | |
1, | |
172]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.3294117748737335, | |
"g": 0.6509804129600525, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:16793", | |
"name": "BG", | |
"type": "GROUP", | |
"x": -103, | |
"y": 10, | |
"width": 400, | |
"height": 400, | |
"relativeTransform": [ [ 1, | |
0, | |
-103], | |
[ 0, | |
1, | |
10]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:16794", | |
"name": "Ellipse 36", | |
"type": "ELLIPSE", | |
"x": 83.83871459960938, | |
"y": 197.3548583984375, | |
"width": 25.80645179748535, | |
"height": 25.80645179748535, | |
"relativeTransform": [ [ 1, | |
0, | |
83.83871459960938], | |
[ 0, | |
1, | |
197.3548583984375]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 10, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16795", | |
"name": "Ellipse 37", | |
"type": "ELLIPSE", | |
"x": 58.032257080078125, | |
"y": 171.54840087890625, | |
"width": 77.41935729980469, | |
"height": 77.41935729980469, | |
"relativeTransform": [ [ 1, | |
0, | |
58.032257080078125], | |
[ 0, | |
1, | |
171.54840087890625]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 20, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16796", | |
"name": "Ellipse 38", | |
"type": "ELLIPSE", | |
"x": 26.032257080078125, | |
"y": 139.03225708007812, | |
"width": 141.93548583984375, | |
"height": 141.93548583984375, | |
"relativeTransform": [ [ 1, | |
0, | |
26.032257080078125], | |
[ 0, | |
1, | |
139.03225708007812]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 20, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16797", | |
"name": "Ellipse 39", | |
"type": "ELLIPSE", | |
"x": -6.4838714599609375, | |
"y": 107.03225708007812, | |
"width": 206.4516143798828, | |
"height": 206.4516143798828, | |
"relativeTransform": [ [ 1, | |
0, | |
-6.4838714599609375], | |
[ 0, | |
1, | |
107.03225708007812]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 20, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16798", | |
"name": "Ellipse 40", | |
"type": "ELLIPSE", | |
"x": -38.48387145996094, | |
"y": 74.51611328125, | |
"width": 270.9677429199219, | |
"height": 270.9677429199219, | |
"relativeTransform": [ [ 1, | |
0, | |
-38.48387145996094], | |
[ 0, | |
1, | |
74.51611328125]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 20, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16799", | |
"name": "Ellipse 41", | |
"type": "ELLIPSE", | |
"x": -71, | |
"y": 42.51611328125, | |
"width": 335.4838562011719, | |
"height": 335.4838562011719, | |
"relativeTransform": [ [ 1, | |
0, | |
-71], | |
[ 0, | |
1, | |
42.51611328125]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 20, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16800", | |
"name": "Ellipse 42", | |
"type": "ELLIPSE", | |
"x": -103, | |
"y": 10, | |
"width": 400, | |
"height": 400, | |
"relativeTransform": [ [ 1, | |
0, | |
-103], | |
[ 0, | |
1, | |
10]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.05999999865889549, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokeWeight": 20, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:16801", | |
"name": "Car", | |
"type": "RECTANGLE", | |
"x": 53, | |
"y": 172, | |
"width": 196, | |
"height": 56, | |
"relativeTransform": [ [ 1, | |
0, | |
53], | |
[ 0, | |
1, | |
172]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "IMAGE", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"scaleMode": "CROP", | |
"imageTransform": [ [ 0.9998507499694824, | |
0, | |
0.00007462686335202307], | |
[ 0, | |
0.5799999833106995, | |
0.2800000011920929]], | |
"scalingFactor": 0.5, | |
"filters": { | |
"exposure": 0, | |
"contrast": 0, | |
"saturation": 0, | |
"temperature": 0, | |
"tint": 0, | |
"highlights": 0, | |
"shadows": 0 | |
} | |
, | |
"imageHash": "2385cc01da9bb791587b8022c475d39822c50c17" | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16802", | |
"name": "Tittle", | |
"type": "FRAME", | |
"x": 16, | |
"y": 16, | |
"width": 240, | |
"height": 70, | |
"relativeTransform": [ [ 1, | |
0, | |
16], | |
[ 0, | |
1, | |
16]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 12, | |
"children": [ { | |
"id": "44:16803", | |
"name": "The Best Platform for Car Rental", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 240, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16804", | |
"name": "Ease of doing a car rental safely and reliably. Of course at a low price.", | |
"type": "TEXT", | |
"x": 0, | |
"y": 32, | |
"width": 216, | |
"height": 38, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
32]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:16805", | |
"name": "Button Rent", | |
"type": "FRAME", | |
"x": 16, | |
"y": 102, | |
"width": 128, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
16], | |
[ 0, | |
1, | |
102]], | |
"constraints": { | |
"horizontal": "MAX", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 2, | |
"cornerRadius": 4, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:16806", | |
"name": "Rental Car", | |
"type": "TEXT", | |
"x": 28, | |
"y": 14, | |
"width": 72, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
28], | |
[ 0, | |
1, | |
14]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:16807", | |
"name": "Pickup", | |
"type": "GROUP", | |
"x": 24, | |
"y": 436, | |
"width": 327, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
436]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "44:16808", | |
"name": "bg", | |
"type": "RECTANGLE", | |
"x": 24, | |
"y": 436, | |
"width": 327, | |
"height": 120, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
436]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 10, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16809", | |
"name": "Pickup Set Time", | |
"type": "FRAME", | |
"x": 40, | |
"y": 452, | |
"width": 295, | |
"height": 88, | |
"relativeTransform": [ [ 1, | |
0, | |
40], | |
[ 0, | |
1, | |
452]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 24, | |
"children": [ { | |
"id": "44:16810", | |
"name": "Pickup", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 92, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:16811", | |
"name": "Mark", | |
"type": "FRAME", | |
"x": 0, | |
"y": 2, | |
"width": 16, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 0.30000001192092896, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 70, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "44:16812", | |
"name": "Ellipse 11", | |
"type": "ELLIPSE", | |
"x": 4, | |
"y": 4, | |
"width": 8, | |
"height": 8, | |
"relativeTransform": [ [ 1, | |
0, | |
4], | |
[ 0, | |
1, | |
4]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.2078431397676468, | |
"g": 0.38823530077934265, | |
"b": 0.9137254953384399 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:16813", | |
"name": "Pick - Up", | |
"type": "TEXT", | |
"x": 24, | |
"y": 0, | |
"width": 68, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
24], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
] | |
} | |
, | |
{ | |
"id": "44:16814", | |
"name": "Set time", | |
"type": "FRAME", | |
"x": 0, | |
"y": 44, | |
"width": 295, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
44]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 20, | |
"children": [ { | |
"id": "44:16815", | |
"name": "Location", | |
"type": "FRAME", | |
"x": 0, | |
"y": 0, | |
"width": 76, | |
"height": 44, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "VERTICAL", | |
"itemSpacing": 8, | |
"children": [ { | |
"id": "44:16816", | |
"name": "Locations", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 76, | |
"height": 20, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.10196078568696976, | |
"g": 0.125490203499794, | |
"b": 0.1725490242242813 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16817", | |
"name": "City", | |
"type": "FRAME", | |
"x": 0, | |
"y": 28, | |
"width": 76, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
28]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "HORIZONTAL", | |
"itemSpacing": 4, | |
"children": [ { | |
"id": "44:16818", | |
"name": "Semarang", | |
"type": "TEXT", | |
"x": 0, | |
"y": 0, | |
"width": 60, | |
"height": 16, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": true, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 0.5647059082984924, | |
"g": 0.6392157077789307, | |
"b": 0.7490196228027344 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [] | |
} | |
, | |
{ | |
"id": "44:16819", | |
"name": "vuesax/outline/arrow-down", | |
"type": "INSTANCE", | |
"x": 64, | |
"y": 2, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
64], | |
[ 0, | |
1, | |
2]], | |
"constraints": { | |
"horizontal": "MIN", | |
"vertical": "MIN" | |
} | |
, | |
"fills": [ { | |
"type": "SOLID", | |
"visible": false, | |
"opacity": 1, | |
"blendMode": "NORMAL", | |
"color": { | |
"r": 1, | |
"g": 1, | |
"b": 1 | |
} | |
, | |
"boundVariables": {} | |
} | |
], | |
"strokes": [], | |
"strokeWeight": 1, | |
"cornerRadius": 0, | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"layoutMode": "NONE", | |
"itemSpacing": 0, | |
"children": [ { | |
"id": "I44:16819;1478:6051", | |
"name": "vuesax/outline/arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:16819;1478:6052", | |
"name": "arrow-down", | |
"type": "GROUP", | |
"x": 0, | |
"y": 0, | |
"width": 12, | |
"height": 12, | |
"relativeTransform": [ [ 1, | |
0, | |
0], | |
[ 0, | |
1, | |
0]], | |
"effects": [], | |
"blendMode": "PASS_THROUGH", | |
"layoutAlign": "INHERIT", | |
"layoutGrow": 0, | |
"children": [ { | |
"id": "I44:16819;1478:6053", | |
"name": "Vector", | |
"type": "VECTOR", | |
"x": 1.666406273841858, | |
"y": 4.100976467132568, | |
"width": 8.667500495910645, | |
"height": 4.2987494468688965, | |
"relativeTransform": [ [ 1, | |
0, | |
1.666406273841858], | |
[ 0, | |
1, | |
4.100976467132568]], | |
"constraints": { | |
"horizontal": "SCALE", | |
"vertical": "SCALE" | |
} | |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment