24 lines
583 B
JavaScript
24 lines
583 B
JavaScript
/**
|
|
* @license lucide v0.424.0 - ISC
|
|
*
|
|
* This source code is licensed under the ISC license.
|
|
* See the LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import defaultAttributes from '../defaultAttributes.js';
|
|
|
|
const IdCard = [
|
|
"svg",
|
|
defaultAttributes,
|
|
[
|
|
["path", { d: "M16 10h2" }],
|
|
["path", { d: "M16 14h2" }],
|
|
["path", { d: "M6.17 15a3 3 0 0 1 5.66 0" }],
|
|
["circle", { cx: "9", cy: "11", r: "2" }],
|
|
["rect", { x: "2", y: "5", width: "20", height: "14", rx: "2" }]
|
|
]
|
|
];
|
|
|
|
export { IdCard as default };
|
|
//# sourceMappingURL=id-card.js.map
|