Skip to content

card-sim

cellphone • smartphone • mobile • network • cellular • service • provider • signal • coverage • disk • data • format • storage • flash • digital • contacts • phone book • contractual • circuit board • chip

Created:

v0.513.0

Last changed:

v0.513.0

Contributors:

danielbayleykarsa-mistmere
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="card-sim"></i>');  
tsx
import { CardSim } from 'lucide-react';

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

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

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="card-sim"></lucide-icon>
html
<div class="icon-card-sim"></div>

See this icon in action

Bug
Feature
Card
112
8
11