Skip to content

chevron-right-square

forward • next • more than • greater • menu • panel • code • coding • command line • terminal • prompt • shell • console • >

Created:

v0.130.0

Last changed:

v0.259.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="chevron-right-square"></i>
tsx
import { ChevronRightSquare } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-chevron-right-square"></div>
dart
Icon(LucideIcons.chevron-right-square);