Skip to content

calendar-range

date • time • event • range • period

Created:

v0.52.0

Last changed:

v0.133.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="calendar-range"></i>
tsx
import { CalendarRange } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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