-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Logo): logo component is now available
- Loading branch information
1 parent
2857dd5
commit 8b47382
Showing
20 changed files
with
644 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<ts-card tsVerticalSpacing> | ||
<h3 tsCardTitle tsVerticalSpacing>Full Gradient Logo (default)</h3> | ||
<ts-logo></ts-logo> | ||
</ts-card> | ||
<ts-card tsVerticalSpacing> | ||
<h3 tsCardTitle tsVerticalSpacing>Full Account Hub Logo</h3> | ||
<ts-logo type="full-account-hub"></ts-logo> | ||
</ts-card> | ||
|
||
|
||
<ts-card tsVerticalSpacing> | ||
<h3 tsCardTitle tsVerticalSpacing>Full Solid Logo</h3> | ||
<ts-logo type="full-solid"></ts-logo> | ||
</ts-card> | ||
<ts-card tsVerticalSpacing> | ||
<h3 tsCardTitle tsVerticalSpacing>Full Solid Logo logoColor="black"</h3> | ||
<ts-logo type="full-solid" logoColor="black"></ts-logo> | ||
</ts-card> | ||
|
||
<div fxLayout="row"> | ||
<ts-card tsVerticalSpacing fxFlex> | ||
<h3 tsCardTitle tsVerticalSpacing>Mark (mark-gradient)</h3> | ||
<ts-logo type="mark-gradient"></ts-logo> | ||
</ts-card> | ||
<ts-card tsVerticalSpacing fxFlex> | ||
<h3 tsCardTitle tsVerticalSpacing>Mark Solid</h3> | ||
<ts-logo type="mark-solid"></ts-logo> | ||
</ts-card> | ||
<ts-card tsVerticalSpacing fxFlex> | ||
<h3 tsCardTitle tsVerticalSpacing>Mark logoColor="gray"</h3> | ||
<ts-logo type="mark-solid" logoColor="gray"></ts-logo> | ||
</ts-card> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'demo-logo', | ||
templateUrl: './logo.component.html', | ||
}) | ||
export class LogoComponent { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"ngPackage": { | ||
"lib": { | ||
"entryFile": "src/public-api.ts" | ||
} | ||
} | ||
} |
Oops, something went wrong.