Skip to content

rotate-3d

gizmo • transform • orientation • orbit • axis

Created:

v0.62.0

Last changed:

v0.62.0

Contributors:

lscheibel
html
<i data-lucide="rotate-3d"></i>
tsx
import { Rotate3D } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-rotate-3d"></div>