From 4fc3bbbe5fc04d37d48e3667472227e67cb22caf Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Mon, 1 Apr 2024 15:34:49 -0400 Subject: [PATCH] feat(input): add ionic theme (#29247) Issue number: internal --------- ## What is the new behavior? Adds the initial files for the Ionic input. ## Does this introduce a breaking change? - [ ] Yes - [x] No --- core/src/components/input/input.ionic.scss | 5 +++++ core/src/components/input/input.ionic.vars.scss | 4 ++++ core/src/components/input/input.tsx | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 core/src/components/input/input.ionic.scss create mode 100644 core/src/components/input/input.ionic.vars.scss diff --git a/core/src/components/input/input.ionic.scss b/core/src/components/input/input.ionic.scss new file mode 100644 index 00000000000..3d1a752d807 --- /dev/null +++ b/core/src/components/input/input.ionic.scss @@ -0,0 +1,5 @@ +@import "./input"; +@import "./input.ionic.vars"; + +// Ionic Input +// -------------------------------------------------- diff --git a/core/src/components/input/input.ionic.vars.scss b/core/src/components/input/input.ionic.vars.scss new file mode 100644 index 00000000000..7b3c3c6c97e --- /dev/null +++ b/core/src/components/input/input.ionic.vars.scss @@ -0,0 +1,4 @@ + +// Ionic Input +// -------------------------------------------------- + diff --git a/core/src/components/input/input.tsx b/core/src/components/input/input.tsx index 24a3551fd02..227324f11b3 100644 --- a/core/src/components/input/input.tsx +++ b/core/src/components/input/input.tsx @@ -28,7 +28,7 @@ import { getCounterText } from './input.utils'; styleUrls: { ios: 'input.ios.scss', md: 'input.md.scss', - ionic: 'input.md.scss', + ionic: 'input.ionic.scss', }, scoped: true, })