Skip to content

captions

closed captions • subtitles • subhead • transcription • transcribe • dialogue • accessibility

Created:

v0.102.0

Last changed:

v0.323.0

Contributors:

DefaultLP
html
<i data-lucide="captions"></i>
tsx
import { Captions } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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