Skip to content

square-pen

pencil • change • create • draw • sketch • draft • writer • writing • biro • ink • marker • felt tip • stationery • artist

Created:

v0.0.0

Last changed:

v0.308.0

Contributors:

colebemiscsandmanmittalyashuericfennis
html
<i data-lucide="square-pen"></i>
tsx
import { SquarePen } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-square-pen"></div>