26 lines
544 B
JavaScript
26 lines
544 B
JavaScript
|
/**
|
||
|
* @license lucide v0.331.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 Camera = [
|
||
|
"svg",
|
||
|
defaultAttributes,
|
||
|
[
|
||
|
[
|
||
|
"path",
|
||
|
{
|
||
|
d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z"
|
||
|
}
|
||
|
],
|
||
|
["circle", { cx: "12", cy: "13", r: "3" }]
|
||
|
]
|
||
|
];
|
||
|
|
||
|
export { Camera as default };
|
||
|
//# sourceMappingURL=camera.js.map
|