Skip to content

proportions

screens • sizes • rotate • rotation • adjust • aspect ratio • 16:9 • widescreen • 4:3 • resolution • responsive • mobile • desktop • dimensions • monitor • orientation • portrait • landscape

Created:

v0.345.0

Last changed:

v0.345.0

Contributors:

danielbayley
html
<i data-lucide="proportions"></i>
tsx
import { Proportions } from 'lucide-react';

const App = () => {
  return (
    <Proportions />
  );
};

export default App;
vue
<script setup>
  import { Proportions } from 'lucide-vue-next';
</script>

<template>
  <Proportions />
</template>
svelte
<script>
import { Proportions } from 'lucide-svelte';
</script>

<Proportions />
tsx
import { Proportions } from 'lucide-preact';

const App = () => {
  return (
    <Proportions />
  );
};

export default App;
tsx
import { Proportions } from 'lucide-solid';

const App = () => {
  return (
    <Proportions />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, Proportions } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ Proportions })
  ],
})

// app.component.html
<lucide-icon name="proportions"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-proportions"></div>