Skip to content

roller-coaster

attraction • entertainment • amusement park • theme park • funfair

Created:

v0.221.0

Last changed:

v0.221.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="roller-coaster"></i>
tsx
import { RollerCoaster } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-roller-coaster"></div>
dart
Icon(LucideIcons.roller-coaster);