@vendasta/store
Version:
Components and data for Store
17 lines (16 loc) • 1.24 kB
JavaScript
import { Component } from '@angular/core';
var SearchBarStencilComponent = /** @class */ (function () {
function SearchBarStencilComponent() {
}
SearchBarStencilComponent.decorators = [
{ type: Component, args: [{
selector: 'search-bar-stencil',
template: "\n <div class=\"search-bar-stencil-container\">\n <div class=\"search-bar-stencil-line stencil-shimmer\">\n <div class=\"search-bar-stencil-icon\"></div>\n </div>\n </div>\n ",
styles: ["\n .search-bar-stencil-container {\n height: 52px;\n display: flex;\n align-content: center;\n background-color: white;\n border-radius: 2px;\n }\n .search-bar-stencil-line {\n height: 30px;\n width: 350px;\n margin: auto 10px;\n display: flex;\n justify-content: flex-end;\n }\n .search-bar-stencil-icon {\n background-color: white;\n width: 20px;\n height: 20px;\n margin: auto 5px;\n }\n "]
},] },
];
/** @nocollapse */
SearchBarStencilComponent.ctorParameters = function () { return []; };
return SearchBarStencilComponent;
}());
export { SearchBarStencilComponent };